Class ConfigException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.bookkeeper.common.conf.ConfigException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConfigException extends java.lang.Exception
Exception thrown for configuration errors.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigException(java.lang.String error)
Construct a config exception with provided error.ConfigException(java.lang.String error, java.lang.Throwable cause)
Construct a config exception with provided error and reason.
-
-
-
Constructor Detail
-
ConfigException
public ConfigException(java.lang.String error)
Construct a config exception with provided error.- Parameters:
error
- error message
-
ConfigException
public ConfigException(java.lang.String error, java.lang.Throwable cause)
Construct a config exception with provided error and reason.- Parameters:
error
- error messagecause
- error cause
-
-