Class CssParseException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.eclipse.e4.ui.css.core.impl.parser.CssParseException
All Implemented Interfaces:
Serializable

public class CssParseException extends RuntimeException
Thrown by the hand-written CSS parser when the input cannot be parsed. Unchecked so it can surface from the parser without checked-exception plumbing.
See Also:
  • Constructor Details

    • CssParseException

      public CssParseException(String message, int line, int column)
  • Method Details

    • getLine

      public int getLine()
      1-based line where parsing failed.
    • getColumn

      public int getColumn()
      1-based column where parsing failed.