|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.threeten.bp.DateTimeException
org.threeten.bp.format.DateTimeParseException
public class DateTimeParseException
An exception thrown when an error occurs during parsing.
This exception includes the text being parsed and the error index.
| Constructor Summary | |
|---|---|
DateTimeParseException(String message,
CharSequence parsedData,
int errorIndex)
Constructs a new exception with the specified message. |
|
DateTimeParseException(String message,
CharSequence parsedData,
int errorIndex,
Throwable cause)
Constructs a new exception with the specified message and cause. |
|
| Method Summary | |
|---|---|
int |
getErrorIndex()
Returns the index where the error was found. |
String |
getParsedString()
Returns the string that was being parsed. |
| Methods inherited from class java.lang.Throwable |
|---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public DateTimeParseException(String message,
CharSequence parsedData,
int errorIndex)
message - the message to use for this exception, may be nullparsedData - the parsed text, should not be nullerrorIndex - the index in the parsed string that was invalid, should be a valid index
public DateTimeParseException(String message,
CharSequence parsedData,
int errorIndex,
Throwable cause)
message - the message to use for this exception, may be nullparsedData - the parsed text, should not be nullerrorIndex - the index in the parsed string that was invalid, should be a valid indexcause - the cause exception, may be null| Method Detail |
|---|
public String getParsedString()
public int getErrorIndex()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||