Package org.apache.sis.util
Class UnsupportedImplementationException
Object
Throwable
Exception
RuntimeException
UnsupportedOperationException
UnsupportedImplementationException
- All Implemented Interfaces:
- Serializable
Thrown when an operation cannot use arbitrary implementation of an interface,
 and a given instance does not met the requirement. For example, this exception
 may be thrown when an operation requires an Apache SIS implementation of a
 GeoAPI interface.
- Since:
- 0.3
- See Also:
Defined in the sis-utility module
- 
Constructor SummaryConstructorsConstructorDescriptionUnsupportedImplementationException(Class<?> classe) Constructs an exception with an error message formatted for the specified class.UnsupportedImplementationException(Class<?> classe, Exception cause) Constructs an exception with an error message formatted for the specified class and a cause.Constructs an exception with the specified detail message.
- 
Method SummaryMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
UnsupportedImplementationExceptionConstructs an exception with the specified detail message.- Parameters:
- message- the detail message, or- nullif none.
 
- 
UnsupportedImplementationExceptionConstructs an exception with an error message formatted for the specified class.- Parameters:
- classe- the unexpected implementation class.
 
- 
UnsupportedImplementationExceptionConstructs an exception with an error message formatted for the specified class and a cause.- Parameters:
- classe- the unexpected implementation class.
- cause- the cause for the exception, or- nullif none.
 
 
-