Package org.symbol.sdk
Class InvalidDescriptorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.symbol.sdk.InvalidDescriptorException
- All Implemented Interfaces:
Serializable
- InvalidDescriptorException
- Signals that a descriptor could not be converted into an entity — a missing key, a wrong-typed value, or a failed typed look-up. Extends
IllegalArgumentExceptionso existingcatch (IllegalArgumentException)blocks keep working.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidDescriptorException(String message) Creates an invalid-descriptor exception.InvalidDescriptorException(String message, Throwable cause) Creates an invalid-descriptor exception wrapping an underlying 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
-
InvalidDescriptorException
Creates an invalid-descriptor exception.- Parameters:
message- Failure reason.
-
InvalidDescriptorException
Creates an invalid-descriptor exception wrapping an underlying cause.- Parameters:
message- Failure reason.cause- Underlying cause.
-