# Print output for @column tags ?>
public
class
ParseException
extends Exception
| java.lang.Object | |||
| ↳ | java.lang.Throwable | ||
| ↳ | java.lang.Exception | ||
| ↳ | java.text.ParseException | ||
Signals that an error has been reached unexpectedly while parsing.
See also:
Public constructors | |
|---|---|
ParseException(String s, int errorOffset)
Constructs a ParseException with the specified detail message and offset. |
|
Public methods | |
|---|---|
int
|
getErrorOffset()
Returns the position where the error was found. |
Inherited methods | |
|---|---|
public ParseException (String s, int errorOffset)
Constructs a ParseException with the specified detail message and offset. A detail message is a String that describes this particular exception.
| Parameters | |
|---|---|
s |
String: the detail message |
errorOffset |
int: the position where the error is found while parsing. |
public int getErrorOffset ()
Returns the position where the error was found.
| Returns | |
|---|---|
int |
the position where the error was found |