Class FilterException

All Implemented Interfaces:
Serializable

public class FilterException extends RuntimeException
Signals that a filter error of some kind has occurred.
See Also:
  • Constructor Details

    • FilterException

      public FilterException()
      Constructs a new FilterException instance.
    • FilterException

      public FilterException(String message)
      Constructs a new FilterException instance with a message.
      Parameters:
      message - the detail message.
    • FilterException

      public FilterException(Throwable cause)
      Constructs a new FilterException instance with a cause.
      Parameters:
      cause - the cause of the exception.
    • FilterException

      public FilterException(String message, Throwable cause)
      Constructs a new FilterException instance with a message and cause.
      Parameters:
      message - the detail message.
      cause - the cause of the exception.