Package org.moera.lib.pushrelay
Class PushRelayException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.moera.lib.jsonrpc.JsonRpcException
org.moera.lib.pushrelay.PushRelayException
- All Implemented Interfaces:
Serializable
Represents an exception specific to the Push Relay API interactions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPushRelayException
(String message) Constructs a newPushRelayException
with the specified detail message.PushRelayException
(String message, Throwable cause) Constructs a newPushRelayException
with the specified detail message and 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
-
PushRelayException
Constructs a newPushRelayException
with the specified detail message.- Parameters:
message
- the detail message
-
PushRelayException
Constructs a newPushRelayException
with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the underlying cause of the exception
-