Class MalformedFilterException

  • All Implemented Interfaces:
    Serializable

    public class MalformedFilterException
    extends Exception
    Defines an exception for a malformed filter.
    Author:
    Rob Hranac, Vision for New York, Chris Holmes, TOPP
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      MalformedFilterException​(Exception cause)
      Constructs an instance of MalformedFilterException with the specified root cause.
      MalformedFilterException​(String message)
      Constructor with a message.
      MalformedFilterException​(String msg, Exception cause)
      Constructs an instance of MalformedFilterException with the specified detail message and root cause.
    • Method Summary

      • Methods inherited from class Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • MalformedFilterException

        public MalformedFilterException​(String message)
        Constructor with a message.
        Parameters:
        message - information on the error.
      • MalformedFilterException

        public MalformedFilterException​(Exception cause)
        Constructs an instance of MalformedFilterException with the specified root cause.
        Parameters:
        cause - the root cause of the exceptions.
      • MalformedFilterException

        public MalformedFilterException​(String msg,
                                        Exception cause)
        Constructs an instance of MalformedFilterException with the specified detail message and root cause.
        Parameters:
        msg - the detail message.
        cause - the root cause of the exceptions.