Serializable
public class CalendricalParseException extends CalendricalException
Constructor | Description |
---|---|
CalendricalParseException(String message,
String parsedString,
int errorIndex) |
Constructs a new exception with the specified message.
|
CalendricalParseException(String message,
String parsedString,
int errorIndex,
Throwable cause) |
Constructs a new exception with the specified message and cause.
|
Modifier and Type | Method | Description |
---|---|---|
int |
getErrorIndex() |
Returns the index where the error was found.
|
String |
getParsedString() |
Returns the string that was being parsed.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public CalendricalParseException(String message, String parsedString, int errorIndex)
message
- the message to use for this exception, may be nullparsedString
- the parsed text, should not be nullerrorIndex
- the index in the parsed string that was invalid, should be a valid indexpublic CalendricalParseException(String message, String parsedString, int errorIndex, Throwable cause)
message
- the message to use for this exception, may be nullparsedString
- 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 nullpublic String getParsedString()
public int getErrorIndex()
Copyright © 2019. All rights reserved.