Package com.vividsolutions.jump.io
Class ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.vividsolutions.jump.JUMPException
-
- com.vividsolutions.jump.io.ParseException
-
- All Implemented Interfaces:
Serializable
public class ParseException extends JUMPException
Simple exception class to express problems parsing data.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParseException(String message)
construct exception with a messageParseException(String message, String newFileName, int newLineNumber, int newCharPos)
More explictly construct a parse exception.ParseException(String message, String newFileName, int newLineNumber, int newCharPos, Throwable cause)
ParseException(String message, Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
fileName
public String fileName
-
-
Constructor Detail
-
ParseException
public ParseException(String message)
construct exception with a message
-
ParseException
public ParseException(String message, String newFileName, int newLineNumber, int newCharPos)
More explictly construct a parse exception. Resulting message will be :message + " in file '" + newFname +"', line " + newLineno + ", char " + newCpos- Parameters:
message
- information about the type of errornewFileName
- filename the error occurred innewLineNumber
- line number the error occurred atnewCharPos
- character position on the line
-
-