Class SnmpTrapHelperException

  • All Implemented Interfaces:
    Serializable

    public class SnmpTrapHelperException
    extends Exception
    This class describes an exception associated with the SnmpTrapHelper class. If the described exception was caused by some other exception (e.g. an exception associated with the JoeSNMP library), that exception will be included as the "cause". The getMessage and printStackTrace methods are overridden, in order to describe the "cause" exception, where present.
    Author:
    Jim Doble , OpenNMS.org
    See Also:
    Serialized Form
    • Constructor Detail

      • SnmpTrapHelperException

        public SnmpTrapHelperException​(String message)
        Construct an SnmpTrapHelperException with the specified message.
        Parameters:
        message - The message to be associated with the exception.
      • SnmpTrapHelperException

        public SnmpTrapHelperException​(String message,
                                       Throwable cause)
        Construct an SnmpTrapHelperException with the specified message and cause.
        Parameters:
        message - The message to be associated with the exception.
        cause - The cause exception to be associated with the exception.
    • Method Detail

      • getMessage

        public String getMessage()
        Get the message associated with this exception. If this exception has an associated cause exception, the message associated with the cause exception is appended.
        Overrides:
        getMessage in class Throwable
        Returns:
        The message associated with this exception.
      • printStackTrace

        public void printStackTrace​(PrintStream ps)
        Print the stack trace associated with this exception to the specified print stream. If this exception has an associated cause exception, the stack trace associated with the cause exception is printed.
        Overrides:
        printStackTrace in class Throwable
      • printStackTrace

        public void printStackTrace()
        Print the stack trace associated with this exception to System.err. If this exception has an associated cause exception, the stack trace associated with the cause exception is printed.
        Overrides:
        printStackTrace in class Throwable
      • printStackTrace

        public void printStackTrace​(PrintWriter pw)
        Print the stack trace associated with this exception to the specified print writer. If this exception has an associated cause exception, the stack trace associated with the cause exception is printed.
        Overrides:
        printStackTrace in class Throwable
        Parameters:
        pw - The print writer to which the stack trace should be printed.