Class ProtectionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.onosproject.net.behaviour.protection.ProtectionException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ProtectionException.InvalidConfigException
public abstract class ProtectionException extends java.lang.ExceptionBase class for Protection related Exceptions.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classProtectionException.InvalidConfigExceptionException thrown when specified configuration was invalid.
-
Constructor Summary
Constructors Modifier Constructor Description protectedProtectionException()Default constructor.protectedProtectionException(java.lang.String message)Creates an exception.protectedProtectionException(java.lang.String message, java.lang.Throwable cause)Creates an exception.protectedProtectionException(java.lang.Throwable cause)Creates an exception.
-
-
-
Constructor Detail
-
ProtectionException
protected ProtectionException()
Default constructor.
-
ProtectionException
protected ProtectionException(java.lang.String message)
Creates an exception.- Parameters:
message- describing error
-
ProtectionException
protected ProtectionException(java.lang.Throwable cause)
Creates an exception.- Parameters:
cause- of this Exception
-
ProtectionException
protected ProtectionException(java.lang.String message, java.lang.Throwable cause)Creates an exception.- Parameters:
message- describing errorcause- of this Exception
-
-