Package com.e1c.g5.dt.applications
Class ApplicationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.e1c.g5.dt.applications.ApplicationException
-
- All Implemented Interfaces:
Serializable
public class ApplicationException extends RuntimeException
The application API core error. Signals common application API error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ApplicationException(String message)
Creates a new instance ofApplicationException
.ApplicationException(String message, Throwable cause)
Creates a new instance ofApplicationException
.ApplicationException(Throwable cause)
Creates a new instance ofApplicationException
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ApplicationException
public ApplicationException(String message)
Creates a new instance ofApplicationException
.- Parameters:
message
- the detail message, cannot benull
-
ApplicationException
public ApplicationException(Throwable cause)
Creates a new instance ofApplicationException
.- Parameters:
cause
- the cause, cannot benull
-
ApplicationException
public ApplicationException(String message, Throwable cause)
Creates a new instance ofApplicationException
.- Parameters:
message
- the detail message, cannot benull
cause
- the cause, cannot benull
-
-