Package com.thoughtworks.qdox.parser
Class ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.thoughtworks.qdox.parser.ParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class ParseException extends java.lang.RuntimeException
Thrown to indicate an error during parsing- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private int
column
The column where the ParserException occurredprivate int
line
The line where the ParserException occurredprivate java.lang.String
sourceInfo
The sourceInfo of where the exception occurred
-
Constructor Summary
Constructors Constructor Description ParseException(java.lang.String message, int line, int column)
Default constructor for the ParseException
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColumn()
int
getLine()
java.lang.String
getMessage()
void
setSourceInfo(java.lang.String sourceInfo)
-