public static class

ElementVisitor.StoppedException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ com.google.gdata.model.ElementVisitor.StoppedException

Class Overview

The StoppedException is thrown by ElementVisitor instances to immediately exit from element tree processing. The is a runtime exception because the common case is that traversal will run to completion and stopping is considered an abnormal termination.

Specific ElementVisitor implementations may define sub-types to signal specific exit conditions, in which case code that uses this type of visitor may want to catch a service the stop conditions if they are expected and convey useful information.

Summary

[Expand]
Inherited Constants
From class java.lang.RuntimeException
From class java.lang.Exception
From class java.lang.Throwable
[Expand]
Inherited Fields
From class java.lang.Throwable
Public Constructors
ElementVisitor.StoppedException(String message, Throwable cause)
ElementVisitor.StoppedException(String message)
ElementVisitor.StoppedException(Throwable cause)
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public ElementVisitor.StoppedException (String message, Throwable cause)

Parameters
message
cause

public ElementVisitor.StoppedException (String message)

Parameters
message

public ElementVisitor.StoppedException (Throwable cause)

Parameters
cause