Package com.iplanet.services.comm.server
Class SendNotificationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.iplanet.services.comm.server.SendNotificationException
-
- All Implemented Interfaces:
Serializable
public class SendNotificationException extends Exception
TheSendNotificationExceptionclass is used to throw exceptions whenever an error is encountered in sending notifications to applications. Errors include unsupported protocol, applications unreachable, communication link error etc.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SendNotificationException(String msg)Constructs an instance of theSendNotificationExceptionclass.SendNotificationException(Throwable t)Constructs an instance of theSendNotificationExceptionclass.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SendNotificationException
public SendNotificationException(String msg)
Constructs an instance of theSendNotificationExceptionclass.- Parameters:
msg- The message provided by the object which is throwing the exception.
-
SendNotificationException
public SendNotificationException(Throwable t)
Constructs an instance of theSendNotificationExceptionclass.- Parameters:
t- The Throwable object provided by the object which is throwing the exception.
-
-