java.lang.Object
java.lang.Throwable
java.lang.Exception
io.mokamint.application.api.ApplicationException
- All Implemented Interfaces:
Serializable
An exception stating that the execution of a method of an application failed to complete correctly.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception.ApplicationException(String message) Creates a new exception with the given message.ApplicationException(String message, Throwable cause) Creates a new exception with the given message and cause.ApplicationException(Throwable 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
-
ApplicationException
public ApplicationException()Creates a new exception. -
ApplicationException
Creates a new exception with the given message.- Parameters:
message- the message
-
ApplicationException
Creates a new exception with the given cause.- Parameters:
cause- the cause
-
ApplicationException
Creates a new exception with the given message and cause.- Parameters:
message- the messagecause- the cause
-