Package org.onosproject.netconf
Class NetconfException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.onosproject.netconf.NetconfException
-
- All Implemented Interfaces:
java.io.Serializable
public class NetconfException extends java.io.IOExceptionRepresents class of errors related to NETCONF SB protocol.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NetconfException(java.lang.String message)Constructs an exception with the specified message.NetconfException(java.lang.String message, java.lang.Throwable cause)Constructs an exception with the specified message and the underlying cause.
-
-
-
Constructor Detail
-
NetconfException
public NetconfException(java.lang.String message)
Constructs an exception with the specified message.- Parameters:
message- the message describing the specific nature of the error
-
NetconfException
public NetconfException(java.lang.String message, java.lang.Throwable cause)Constructs an exception with the specified message and the underlying cause.- Parameters:
message- the message describing the specific nature of the errorcause- the underlying cause of this error
-
-