Package gov.usgs.earthquake.distribution
Class ConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
gov.usgs.earthquake.distribution.ConfigurationException
- All Implemented Interfaces:
Serializable
A configuration exception, thrown while loading the config file if there are
problems.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConfigurationException
(String message) Construct a configuration exception with only a string describing the error.ConfigurationException
(String message, Exception cause) Construct a configuration exception with a string describing the error, and an exception that was caught that led to the problem. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConfigurationException
Construct a configuration exception with only a string describing the error.- Parameters:
message
- description of the error (and possibly, solution).
-
ConfigurationException
Construct a configuration exception with a string describing the error, and an exception that was caught that led to the problem.- Parameters:
message
- description of the error (and possibly, solution).cause
- exception that led to problem
-