Java in a Nutshell

Previous Chapter 29
The java.text Package
Next
 

29.15 java.text.ParseException (JDK 1.1)

This exception signals that a string had an incorrect format and could not be parsed. It is typically thrown by the parse() or parseObject() methods of Format and its subclasses, but is also thrown by certain methods in the java.text package that are passed patterns or other rules in string form. The getErrorOffset() method of this class returns the character position at which the parsing error occurred in the offending string.

public class ParseException extends Exception {
    // Public Constructor
            public ParseException(String s, int errorOffset);
    // Public Instance Methods
            public int getErrorOffset();
}

Hierarchy:

Object->Throwable(Serializable)->Exception->ParseException

Thrown By:

DateFormat.parse(), Format.parseObject(), MessageFormat.parse(), NumberFormat.parse(), RuleBasedCollator()


Previous Home Next
java.text.NumberFormat (JDK 1.1) Book Index java.text.ParsePosition (JDK 1.1)

Java in a Nutshell Java Language Reference Java AWT Java Fundamental Classes Exploring Java