Package overit.geocall.util
Class ApplicationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
overit.geocall.util.ApplicationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
UnauthorizedAccessException,XMLException
The class represent an exception that occurs during the user interaction with the application.
It extends
RuntimeException- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionApplicationException(String message) Creates the exception with the specified detail messageApplicationException(String message, Throwable cause) Creates a new exception with the specified detail message passed as first parameter and cause passed as second oneApplicationException(Throwable cause) Creates the 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
-
ApplicationException
Creates a new exception with the specified detail message passed as first parameter and cause passed as second one- Parameters:
message- The error message attached to the exceptioncause- The specific cause of this exception
-
ApplicationException
Creates the exception with the specified cause- Parameters:
cause- The specific cause of this exception
-
ApplicationException
Creates the exception with the specified detail message- Parameters:
message- The specific detail message of this exception
-