Package com.xinapse.image
Class ParameterNotSetException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.xinapse.image.ParameterNotSetException
- All Implemented Interfaces:
Serializable
Indicates that a parameter is not stored in an image.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs anParameterNotSetExceptionwith"parameter not set"as its detail message.Constructs aParameterNotSetExceptionwith the specified detail message.ParameterNotSetException(String message, Throwable cause) Constructs aParameterNotSetExceptionwith 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
-
Constructor Details
-
ParameterNotSetException
public ParameterNotSetException()Constructs anParameterNotSetExceptionwith"parameter not set"as its detail message. -
ParameterNotSetException
Constructs aParameterNotSetExceptionwith the specified detail message. The error message stringscan later be retrieved by theThrowable.getMessage()method of classThrowable.- Parameters:
s- the detail message.
-
ParameterNotSetException
Constructs aParameterNotSetExceptionwith the specified cause.- Parameters:
message- the detail message.cause- the cause.
-