| java.lang.Object java.lang.Throwable java.lang.Exception java.text.ParseException
ParseException | public class ParseException extends Exception (Code) | | A ParseException is thrown when the String being parsed is not in the correct
form.
|
Constructor Summary | |
public | ParseException(String detailMessage, int location) Constructs a new instance of this class with its walkback, message and
the location of the error filled in. |
Method Summary | |
public int | getErrorOffset() Answers the index at which the parse exception occurred. |
ParseException | public ParseException(String detailMessage, int location)(Code) | | Constructs a new instance of this class with its walkback, message and
the location of the error filled in.
Parameters: detailMessage - String The detail message for the exception. Parameters: location - int The index at which the parse exception occurred. |
getErrorOffset | public int getErrorOffset()(Code) | | Answers the index at which the parse exception occurred.
int The index of the parse exception. |
|
|