|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
ObjectThrowable
Exception
RuntimeException
BackingStoreException
public class BackingStoreException
Thrown to indicate that a FeatureCollection
operation could not complete because of a
failure in the backing store, or a failure to contact the backing store. At the difference of
FeatureStoreException
, this exception is unchecked in order to allows its usage with
the Java collection framework. This exception usually have an IOException
or a
SQLException
as its cause. The cause may also be a
TransformException
if the feature collection
performs reprojection on the fly.
Constructor Summary | |
---|---|
BackingStoreException()
Constructs a new exception with no detail message. |
|
BackingStoreException(String message)
Constructs a new exception with the specified detail message. |
|
BackingStoreException(String message,
Throwable cause)
Constructs a new exception with the specified detail message and cause. |
|
BackingStoreException(Throwable cause)
Constructs a new exception with the specified cause. |
Method Summary |
---|
Methods inherited from class Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public BackingStoreException()
public BackingStoreException(String message)
message
- the detail message, saved for later retrieval by the Throwable.getMessage()
method.public BackingStoreException(Throwable cause)
cause
- the cause, saved for later retrieval by the Throwable.getCause()
method.public BackingStoreException(String message, Throwable cause)
message
- the detail message, saved for later retrieval by the Throwable.getMessage()
method.cause
- the cause, saved for later retrieval by the Throwable.getCause()
method.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |