Constructors Summary |
---|
public ApplicationServerInternalException()Constructs a new instance with null as its detail message. super();
|
public ApplicationServerInternalException(String message)Constructs a new instance with the specified detail message.
super(message);
|
public ApplicationServerInternalException(Throwable cause)Constructs a new throwable with the specified cause.
super(cause);
|
public ApplicationServerInternalException(String message, Throwable cause)Constructs a new throwable with the specified detail message and cause.
super(message, cause);
|
public ApplicationServerInternalException(String message, String errorCode)Constructs a new throwable with the specified detail message and
an error code.
super(message, errorCode);
|