Package org.onosproject.net.config
Class ConfigException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.onosproject.net.config.ConfigException
-
- All Implemented Interfaces:
java.io.Serializable
@Beta public class ConfigException extends java.lang.Exception
Signals that an error was encountered while reading/writing configuration.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigException(java.lang.String message)
Constructs a new ConfigException with the given message.ConfigException(java.lang.String message, java.lang.Throwable cause)
Constructs a new ConfigException with the given message and cause.
-
-
-
Constructor Detail
-
ConfigException
public ConfigException(java.lang.String message)
Constructs a new ConfigException with the given message.- Parameters:
message
- message
-
ConfigException
public ConfigException(java.lang.String message, java.lang.Throwable cause)
Constructs a new ConfigException with the given message and cause.- Parameters:
message
- messagecause
- cause
-
-