All Packages Class Hierarchy This Package Previous Next Index
Class org.w3c.css.parser.CssError
java.lang.Object
|
+----org.w3c.css.parser.CssError
- public class CssError
- extends Object
This class represents an unknown error during the parse.
-
CssError()
- Create a new CssError
-
CssError(Exception)
- Create a new CssError
-
CssError(String, int, Exception)
- Create a new CssError
-
getException()
- get the unknown error
-
getLine()
- get the line number
-
getSourceFile()
- Get the source file
CssError
public CssError()
- Create a new CssError
CssError
public CssError(String sourceFile,
int line,
Exception error)
- Create a new CssError
- Parameters:
- sourceFile - The source file
- line - The error line number
- error - The exception
CssError
public CssError(Exception error)
- Create a new CssError
- Parameters:
- error - The exception
getSourceFile
public String getSourceFile()
- Get the source file
getLine
public int getLine()
- get the line number
getException
public Exception getException()
- get the unknown error
All Packages Class Hierarchy This Package Previous Next Index