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 SummaryConstructors 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.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
ApplicationExceptionpublic ApplicationException(String message) Creates a new instance ofApplicationException.- Parameters:
- message- the detail message, cannot be- null
 
 - 
ApplicationExceptionpublic ApplicationException(Throwable cause) Creates a new instance ofApplicationException.- Parameters:
- cause- the cause, cannot be- null
 
 - 
ApplicationExceptionpublic ApplicationException(String message, Throwable cause) Creates a new instance ofApplicationException.- Parameters:
- message- the detail message, cannot be- null
- cause- the cause, cannot be- null
 
 
- 
 
-