Module io.mokamint.application.api
Package io.mokamint.application.api
Class ClosedApplicationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.mokamint.application.api.ClosedApplicationException
- All Implemented Interfaces:
Serializable
An exception stating that an application is closed and cannot perform the request.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception.ClosedApplicationException(String message) Creates a new exception with the given message.ClosedApplicationException(String message, Throwable cause) Creates a new exception with the given message and 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
-
ClosedApplicationException
public ClosedApplicationException()Creates a new exception. -
ClosedApplicationException
Creates a new exception with the given message.- Parameters:
message- the message
-
ClosedApplicationException
Creates a new exception with the given cause.- Parameters:
cause- the cause
-
ClosedApplicationException
Creates a new exception with the given message and cause.- Parameters:
message- the messagecause- the cause
-