Class ConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.iotdb.commons.exception.IoTDBException
-
- org.apache.iotdb.commons.exception.ConfigurationException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConfigurationException extends IoTDBException
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.iotdb.commons.exception.IoTDBException
errorCode, isUserException
-
-
Constructor Summary
Constructors Constructor Description ConfigurationException(java.lang.String reason)Notice: The error reason should always be set for ease of use.ConfigurationException(java.lang.String parameter, java.lang.String badValue, java.lang.String correctValue, java.lang.String reason)Notice: The error reason should always be set for ease of use.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCorrectValue()java.lang.StringgetParameter()-
Methods inherited from class org.apache.iotdb.commons.exception.IoTDBException
getErrorCode, isUserException
-
-
-
-
Constructor Detail
-
ConfigurationException
public ConfigurationException(java.lang.String parameter, java.lang.String badValue, java.lang.String correctValue, java.lang.String reason)Notice: The error reason should always be set for ease of use.- Parameters:
parameter- The error parameterbadValue- The bad valuecorrectValue- The correct value (if it could be listed)reason- The reason why lead to the exception
-
ConfigurationException
public ConfigurationException(java.lang.String reason)
Notice: The error reason should always be set for ease of use.
-
-