Package org.xhtmlrenderer.css.parser
Class CSSParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.xhtmlrenderer.css.parser.CSSParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class CSSParseException extends java.lang.RuntimeException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CSSParseException(java.lang.String message, int line)
CSSParseException(Token found, Token[] expected, int line)
CSSParseException(Token found, Token expected, int line)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Token
getFound()
int
getLine()
java.lang.String
getMessage()
boolean
isCallerNotified()
boolean
isEOF()
void
setCallerNotified(boolean callerNotified)
void
setLine(int i)
-
-
-
Method Detail
-
getMessage
public java.lang.String getMessage()
- Overrides:
getMessage
in classjava.lang.Throwable
-
getFound
public Token getFound()
-
getLine
public int getLine()
-
setLine
public void setLine(int i)
-
isEOF
public boolean isEOF()
-
isCallerNotified
public boolean isCallerNotified()
-
setCallerNotified
public void setCallerNotified(boolean callerNotified)
-
-