Package overit.geocall.event.exception
Class SpoutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
overit.geocall.event.exception.SpoutException
- All Implemented Interfaces:
Serializable
Exception thrown by Spout components in the event processing system.
This exception is used to indicate errors that occur during event processing operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSpoutException(String message) Constructs a new SpoutException with the specified detail message.SpoutException(String message, Throwable cause) Constructs a new SpoutException with the specified detail message and cause.SpoutException(Throwable cause) Constructs a new SpoutException with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SpoutException
Constructs a new SpoutException with the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method)
-
SpoutException
Constructs a new SpoutException with the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method)cause- the cause (which is saved for later retrieval by theThrowable.getCause()method)
-
SpoutException
Constructs a new SpoutException with the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method)
-