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