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.
See also:
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
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
public int getErrorOffset ()
Returns the position where the error was found.
| Returns | |
|---|---|
| int | the position where the error was found | 
