Package org.opennms.protocols.nsclient
Class NsclientException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opennms.protocols.nsclient.NsclientException
-
- All Implemented Interfaces:
java.io.Serializable
public class NsclientException extends java.lang.Exception
This object implements the internal exceptions used by theNsclientManager
system.- Version:
- $Id: $
- Author:
- Matt Raykowski
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NsclientException()
Constructor.NsclientException(java.lang.String message)
Constructor, sets the message pertaining to the exception problem.NsclientException(java.lang.String message, java.lang.Throwable cause)
Constructor, sets the message pertaining to the exception problem and the root cause exception (if applicable.)NsclientException(java.lang.Throwable cause)
Constructor, sets the exception that caused this exception to be generated.
-
-
-
Constructor Detail
-
NsclientException
public NsclientException()
Constructor.
-
NsclientException
public NsclientException(java.lang.String message)
Constructor, sets the message pertaining to the exception problem.- Parameters:
message
- the message pertaining to the exception problem.
-
NsclientException
public NsclientException(java.lang.String message, java.lang.Throwable cause)
Constructor, sets the message pertaining to the exception problem and the root cause exception (if applicable.)- Parameters:
message
- the message pertaining to the exception problem.cause
- the exception that caused this exception to be generated.
-
NsclientException
public NsclientException(java.lang.Throwable cause)
Constructor, sets the exception that caused this exception to be generated.- Parameters:
cause
- the exception that caused this exception to be generated.
-
-