Class CheckedUnsupportedOperationException
Object
Throwable
Exception
AnchorCheckedException
CheckedUnsupportedOperationException
- All Implemented Interfaces:
Serializable
When a particular operation is unsupported in particular circumstances.
In constrast to UnsupportedOperationException
this is a checked, not a runtime
exception.
- Author:
- Owen Feehan
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates with a default message indicating that the operation is unsupported.Creates with a message explaining that the operation is unsupported. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CheckedUnsupportedOperationException
public CheckedUnsupportedOperationException()Creates with a default message indicating that the operation is unsupported. -
CheckedUnsupportedOperationException
Creates with a message explaining that the operation is unsupported.- Parameters:
message
- the message.
-