Package gov.usgs.earthquake.distribution
Class ContinuableListenerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- gov.usgs.earthquake.distribution.ContinuableListenerException
-
- All Implemented Interfaces:
java.io.Serializable
public class ContinuableListenerException extends java.lang.Exception
Wrapper exception class. This is thrown by NotificationListeners from theonNotification
method. This exception exists only so we can identify the type of exception and attempt to resubmit a failed notification for indexing.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContinuableListenerException(java.lang.String message)
Wrapper for exception.ContinuableListenerException(java.lang.String message, java.lang.Throwable cause)
Wrapper for exception.ContinuableListenerException(java.lang.Throwable cause)
Wrapper for exception.
-
-
-
Constructor Detail
-
ContinuableListenerException
public ContinuableListenerException(java.lang.String message)
Wrapper for exception. Takes message- Parameters:
message
- string
-
ContinuableListenerException
public ContinuableListenerException(java.lang.Throwable cause)
Wrapper for exception. Takes cause- Parameters:
cause
- throwable
-
ContinuableListenerException
public ContinuableListenerException(java.lang.String message, java.lang.Throwable cause)
Wrapper for exception. Takes message and cause- Parameters:
message
- stringcause
- throwable
-
-