public class PPTException
extends java.lang.Exception
Constructor and Description |
---|
PPTException(java.lang.String msg)
Exception used with OPeNDAP client and server request handling where the
msg passed to the constructor represents the error that has occurred
in handling the OPeNDAP request.
|
PPTException(java.lang.String msg,
java.lang.Throwable cause)
Exception used with OPeNDAP client and server request handling where the
msg passed to the constructor represents the error that has occurred
in handling the OPeNDAP request.
|
PPTException(java.lang.Throwable cause)
Exception used with OPeNDAP client and server request handling where the
msg passed to the constructor represents the error that has occurred
in handling the OPeNDAP request.
|
public PPTException(java.lang.String msg)
msg
- The error message assoicated with this exception. In many
cases this message includes exception messages handled
within OPeNDAP methods, including client server connection
errors, send and receive error messages, etc...public PPTException(java.lang.String msg, java.lang.Throwable cause)
msg
- The error message assoicated with this exception. In many
cases this message includes exception messages handled
within OPeNDAP methods, including client server connection
errors, send and receive error messages, etc...cause
- - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is permitted, and indicates
that the cause is nonexistent or unknown.)public PPTException(java.lang.Throwable cause)
cause
- - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is permitted, and indicates
that the cause is nonexistent or unknown.)