Added in API level 1

ParseException

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.

Summary

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 constructors

ParseException

Added in API level 1
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 methods

getErrorOffset

Added in API level 1
public int getErrorOffset ()

Returns the position where the error was found.

Returns
int the position where the error was found