Class ControllerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
be.theking90000.mumble.controller.core.ControllerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CommandRejectedException,OwnershipLostException,SessionClosedException
Base unchecked exception for local validation, protocol, and asynchronous controller failures.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionControllerException(String message) Creates a controller exception with a descriptive message.ControllerException(String message, Throwable cause) Creates a controller exception with a descriptive message and underlying 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
-
ControllerException
Creates a controller exception with a descriptive message.- Parameters:
message- description of the failure
-
ControllerException
Creates a controller exception with a descriptive message and underlying cause.- Parameters:
message- description of the failurecause- underlying failure
-