Package org.apache.sis.util
Class UnknownNameException
- Object
-
- Throwable
-
- Exception
-
- RuntimeException
-
- UnknownNameException
-
- All Implemented Interfaces:
Serializable
public class UnknownNameException extends RuntimeException
Thrown when an operation can not complete because a given name is unrecognized. The unrecognized name may be aGenericName, anIdentifier, aStringused as a name or identifier, or any other objects with similar purpose.Note: in the particular case of objects created from a
Factory, the exception for unrecognized identifiers is ratherNoSuchIdentifierException.- Since:
- 0.5
- See Also:
- Serialized Form
Defined in the
sis-utilitymodule
-
-
Constructor Summary
Constructors Constructor Description UnknownNameException()Constructs a new exception with no message.UnknownNameException(String message)Constructs a new exception with the specified detail message.UnknownNameException(String message, Throwable cause)Constructs a new exception with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnknownNameException
public UnknownNameException()
Constructs a new exception with no message.
-
UnknownNameException
public UnknownNameException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message, ornullif none.
-
-