Package com.lucimber.dbus.message
Class InvalidMessageException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.lucimber.dbus.message.InvalidMessageException
- All Implemented Interfaces:
Serializable
Signals that a message is invalid or violates the D-Bus specification.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidMessageException
(String message) Constructs a new exception with the specified detail message.InvalidMessageException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.InvalidMessageException
(Throwable cause) Constructs a new exception with the specified 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
-
InvalidMessageException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message
-
InvalidMessageException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method)
-
InvalidMessageException
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method)
-