Class SpoutException

java.lang.Object
java.lang.Throwable
java.lang.Exception
overit.geocall.event.exception.SpoutException
All Implemented Interfaces:
Serializable

public class SpoutException extends Exception
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 Details

    • SpoutException

      public SpoutException(String message)
      Constructs a new SpoutException with the specified detail message.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method)
    • SpoutException

      public SpoutException(String message, Throwable cause)
      Constructs a new SpoutException with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method)
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method)
    • SpoutException

      public SpoutException(Throwable cause)
      Constructs a new SpoutException with the specified cause.
      Parameters:
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method)