Package ddf.catalog.event
Class EventException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ddf.catalog.event.EventException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DeliveryException,InvalidSubscriptionException,SubscriptionExistsException,SubscriptionNotFoundException
The exception thrown to capture problems during the PubSub operations create, update, and delete
of subscriptions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInstantiates a newEventException.EventException(String message) Instantiates a newEventExceptionwith the provided message.EventException(String message, Throwable throwable) Instantiates a newEventExceptionwith the provided message and throwable.EventException(Throwable throwable) Instantiates a newEventExceptionwith the provided throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EventException
public EventException()Instantiates a newEventException. -
EventException
Instantiates a newEventExceptionwith the provided message.- Parameters:
message- the message
-
EventException
Instantiates a newEventExceptionwith the provided message and throwable.- Parameters:
message- the messagethrowable- the throwable
-
EventException
Instantiates a newEventExceptionwith the provided throwable.- Parameters:
throwable- the throwable
-