public class ApplicationException
extends java.lang.Exception
ApplicationService
interface. This exception contains the actual error or the error message of
the business error that occured during processing the request.Constructor and Description |
---|
ApplicationException()
Default constructor.
|
ApplicationException(java.lang.String message)
Constructs the
ApplicationException object with the passed message |
ApplicationException(java.lang.String message,
java.lang.Throwable cause)
Constructs the
ApplicationException object with the passed message. |
ApplicationException(java.lang.Throwable cause)
Constructs the
ApplicationException object storing the actual
exception that occured |
public ApplicationException()
public ApplicationException(java.lang.String message)
ApplicationException
object with the passed messagemessage
- The message which is describes the exception causedpublic ApplicationException(java.lang.String message, java.lang.Throwable cause)
ApplicationException
object with the passed message.
It also stores the actual exception that occuredmessage
- The message which is describes the exception causedcause
- The actual exception that occuredpublic ApplicationException(java.lang.Throwable cause)
ApplicationException
object storing the actual
exception that occuredcause
- The actual exception that occured