java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.hotmoka.patricia.api.TrieException
- All Implemented Interfaces:
Serializable
An exception stating that the execution of a method of a Patricia trie contains a bug.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTrieException(String message) Creates a new exception with the given message.TrieException(String message, Throwable cause) Creates a new exception with the given message and cause.TrieException(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
-
TrieException
Creates a new exception with the given message.- Parameters:
message- the message
-
TrieException
Creates a new exception with the given cause.- Parameters:
cause- the cause
-
TrieException
Creates a new exception with the given message and cause.- Parameters:
message- the messagecause- the cause
-