Package org.moera.lib.node.exception
Class MoeraNodeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.moera.lib.node.exception.MoeraNodeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MoeraNodeApiException
,MoeraNodeConnectionException
Represents a general exception related to errors encountered when calling Moera Node API.
This exception serves as a base class for all exceptions specific to node-related errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMoeraNodeException
(String message) Constructs a newMoeraNodeException
with the specified detail message.MoeraNodeException
(String message, Throwable cause) Constructs a newMoeraNodeException
with the specified detail message and cause.MoeraNodeException
(Throwable cause) Constructs a newMoeraNodeException
with the provided 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
-
MoeraNodeException
Constructs a newMoeraNodeException
with the specified detail message.- Parameters:
message
- the detail message
-
MoeraNodeException
Constructs a newMoeraNodeException
with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the throwable that caused this exception to be thrown
-
MoeraNodeException
Constructs a newMoeraNodeException
with the provided cause.- Parameters:
cause
- the throwable that caused this exception to be thrown
-