Class CSSException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CSSBudgetException, CSSParseException

public class CSSException extends RuntimeException
CSS runtime exception, normally related to parsing.

As it is expected to be used in the context of an event parser, it is a RuntimeException subclass.

Based on SAC's CSSException class by Philippe Le Hegaret.

See Also:
  • Constructor Details

    • CSSException

      public CSSException()
      Construct a CSS exception.
    • CSSException

      public CSSException(String message)
      Construct a CSS exception that has a descriptive message.
      Parameters:
      message - the descriptive message.
    • CSSException

      public CSSException(Throwable cause)
      Construct a CSS exception that has a cause.
      Parameters:
      cause - the cause. If null, the cause is unknown.
    • CSSException

      public CSSException(String message, Throwable cause)
      Construct a CSS exception that has a cause and a descriptive message.
      Parameters:
      message - the descriptive message.
      cause - the cause. If null, the cause is unknown.