java.lang.Object
java.lang.Throwable
java.lang.Exception
io.hotmoka.patricia.api.UnknownKeyException
- All Implemented Interfaces:
Serializable
An exception stating that a key is missing from a key/value store.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception.UnknownKeyException(String message) Creates a new exception with the given message.UnknownKeyException(String message, Throwable cause) Creates a new exception with the given message and cause.UnknownKeyException(Throwable cause) Creates a new exception with the given 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
-
UnknownKeyException
public UnknownKeyException()Creates a new exception. -
UnknownKeyException
Creates a new exception with the given message.- Parameters:
message- the message
-
UnknownKeyException
Creates a new exception with the given cause.- Parameters:
cause- the cause
-
UnknownKeyException
Creates a new exception with the given message and cause.- Parameters:
message- the messagecause- the cause
-