public class URISyntaxException extends Exception
URI,
Serialized Form
| Constructor and Description |
|---|
URISyntaxException(String
Constructs an instance from the given input string and reason.
|
URISyntaxException(String
Constructs an instance from the given input string, reason, and error index.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getIndex()
Returns an index into the input string of the position at which the parse error occurred, or
-1 if this position is not known.
|
String |
getInput()
Returns the input string.
|
String |
getMessage()
Returns a string describing the parse error.
|
String |
getReason()
Returns a string explaining why the input string could not be parsed.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic URISyntaxException(Stringinput, String reason, int index)
input - The input string
reason - A string explaining why the input could not be parsed
index - The index at which the parse error occurred, or
-1 if the index is not known
NullPointerException - If either the input or reason strings are
null
IllegalArgumentException - If the error index is less than
-1
public URISyntaxException(Stringinput, String reason)
-1.
input - The input string
reason - A string explaining why the input could not be parsed
NullPointerException - If either the input or reason strings are
null
public StringgetInput()
public StringgetReason()
public int getIndex()
-1 if this position is not known.
public StringgetMessage()
':'), a space, and the input string. If the error index is defined then the string
" at index " followed by the index, in decimal, is inserted after the reason string and before the colon character.
getMessage in class
Throwable