Package gov.usgs.earthquake.distribution
Class NotificationListenerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- gov.usgs.earthquake.distribution.NotificationListenerException
-
- All Implemented Interfaces:
java.io.Serializable
public class NotificationListenerException extends java.lang.Exception
An exception thrown by a NotificationListener when it cannot process a product.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotificationListenerException(java.lang.String message)
NotificationListener exception only taking a messageNotificationListenerException(java.lang.String message, java.lang.Exception cause)
NotificationListener exception taking a message and causeNotificationListenerException(java.lang.Throwable cause)
NotificationListener exception only taking a throwable cause
-
-
-
Constructor Detail
-
NotificationListenerException
public NotificationListenerException(java.lang.String message)
NotificationListener exception only taking a message- Parameters:
message
- String
-
NotificationListenerException
public NotificationListenerException(java.lang.String message, java.lang.Exception cause)
NotificationListener exception taking a message and cause- Parameters:
message
- Stringcause
- Exception that occured
-
NotificationListenerException
public NotificationListenerException(java.lang.Throwable cause)
NotificationListener exception only taking a throwable cause- Parameters:
cause
- Throwable
-
-