Package opendap.servers
Class SBHException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- opendap.dap.DAP2Exception
-
- opendap.servers.DAP2ServerSideException
-
- opendap.servers.SBHException
-
- All Implemented Interfaces:
Serializable
public class SBHException extends DAP2ServerSideException
The Something Bad Happened (SBH) Exception. This gets thrown in situations where something pretty bad went down and we don't have a good exception type to describe the problem, or we don't really know what the hell is going on. Yes, its the garbage dump of our exception classes.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SBHException(int err, String s)Construct aSBHExceptionwith the specified message and OPeNDAP error code see (DAP2Exception).SBHException(String s)Construct aSBHExceptionwith the specified detail message.
-
Method Summary
-
Methods inherited from class opendap.dap.DAP2Exception
getErrorCode, getErrorMessage, getMessage, getProgramSource, getProgramType, parse, print, print, setErrorCode, setErrorMessage, setProgramSource, setProgramType
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SBHException
public SBHException(String s)
Construct aSBHExceptionwith the specified detail message.- Parameters:
s- the detail message.
-
SBHException
public SBHException(int err, String s)Construct aSBHExceptionwith the specified message and OPeNDAP error code see (DAP2Exception).- Parameters:
err- the OPeNDAP error code.s- the detail message.
-
-