Package org.apache.sis.metadata
Class InvalidMetadataException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
org.apache.sis.metadata.InvalidMetadataException
- All Implemented Interfaces:
Serializable
Thrown when a metadata is in a invalid state or has illegal property values.
- Since:
- 0.3
- Version:
- 0.8
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
For cross-version compatibility. -
Constructor Summary
ConstructorsConstructorDescriptionInvalidMetadataException
(String message) Creates a new exception with the specified detail message.InvalidMetadataException
(String message, Throwable cause) Creates a new exception with the specified detail message and cause.Creates a new exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDFor cross-version compatibility.- See Also:
-
-
Constructor Details
-
InvalidMetadataException
Creates a new exception with the specified detail message.- Parameters:
message
- the details message, ornull
if none.
-
InvalidMetadataException
Creates a new exception with the specified cause. The details message is copied from the cause.- Parameters:
cause
- the cause, ornull
if none.- Since:
- 0.8
-
InvalidMetadataException
Creates a new exception with the specified detail message and cause.- Parameters:
message
- the details message, ornull
if none.cause
- the cause, ornull
if none.- Since:
- 0.8
-