Constructor: |
public MarshalException() {
super();
}
Creates a new MarshalException with no message
or nested Exception. |
public MarshalException(String message) {
super(message);
}
Creates a new MarshalException with the given message. Parameters:
message - the message for this Exception
|
public MarshalException(Throwable exception) {
super(exception);
}
Creates a new MarshalException with the given nested
exception. Parameters:
exception - the nested exception
|
public MarshalException(String message,
int errorCode) {
super(message, errorCode);
}
Creates a new MarshalException with the given message. Parameters:
message - the message for this Exception
errorCode - the errorCode for this Exception
*
|
public MarshalException(String message,
Throwable exception) {
super(message, exception);
}
Creates a new MarshalException with the given message
and nested exception. Parameters:
message - the detail message for this exception
exception - the nested exception
*
|
public MarshalException(String message,
Throwable exception,
int errorCode) {
super(message, exception, errorCode);
}
Creates a new MarshalException with the given message,
nested exception, and errorCode. Parameters:
message - the detail message for this exception
exception - the nested exception
errorCode - the errorCode for this Exception
|