com.generationjava.lang
Class NotifierException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.generationjava.lang.NotifierException
All Implemented Interfaces:
Serializable

public class NotifierException
extends Exception

Exception thrown when something goes wrong in notifying.

Since:
2.0
Version:
$Id: NotifierException.java 1719 2005-05-26 11:46:13Z rzigweid $
Author:
Henri Yandell
See Also:
Serialized Form

Constructor Summary
NotifierException()
          Constructs a new NotifierException without specified detail message.
NotifierException(String msg)
          Constructs a new NotifierException with specified detail message.
NotifierException(String msg, Throwable rootCause)
          Constructs a new NotifierException with specified detail message and nested Throwable root cause.
NotifierException(Throwable rootCause)
          Constructs a new NotifierException with specified nested Throwable root cause.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NotifierException

public NotifierException()

Constructs a new NotifierException without specified detail message.


NotifierException

public NotifierException(String msg)

Constructs a new NotifierException with specified detail message.

Parameters:
msg - the error message.

NotifierException

public NotifierException(Throwable rootCause)

Constructs a new NotifierException with specified nested Throwable root cause.

Parameters:
rootCause - the Exception or Error that caused this exception to be thrown.

NotifierException

public NotifierException(String msg,
                         Throwable rootCause)

Constructs a new NotifierException with specified detail message and nested Throwable root cause.

Parameters:
msg - the error message.
rootCause - the Exception or Error that caused this exception to be thrown.


Copyright © 2000-2005 OSJava. All Rights Reserved.