Package ucar.units
Class PrefixDBException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ucar.units.UnitException
-
- ucar.units.PrefixDBException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
PrefixDBAccessException
,PrefixExistsException
public class PrefixDBException extends UnitException
Provides support for the general class of prefix database failures.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PrefixDBException()
Constructs from nothing.PrefixDBException(Exception e)
Constructs from the exception that caused this exception to be thrown.PrefixDBException(String message)
Constructs from an error message.PrefixDBException(String message, Exception e)
Constructs from an error message and the exception that caused this exception to be thrown.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PrefixDBException
public PrefixDBException()
Constructs from nothing.
-
PrefixDBException
public PrefixDBException(String message)
Constructs from an error message.- Parameters:
message
- The error message.
-
PrefixDBException
public PrefixDBException(Exception e)
Constructs from the exception that caused this exception to be thrown.- Parameters:
e
- The exception that caused this exception to be thrown.
-
-