public class URISyntaxException
extends java.lang.Exception
URI,
Serialized Form| Constructor and Description |
|---|
URISyntaxException(java.lang.String input,
java.lang.String reason)
Constructs an instance from the given input string and reason.
|
URISyntaxException(java.lang.String input,
java.lang.String reason,
int index)
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. |
java.lang.String |
getInput()
Returns the input string.
|
java.lang.String |
getMessage()
Returns a string describing the parse error.
|
java.lang.String |
getReason()
Returns a string explaining why the input string could not be parsed.
|
public URISyntaxException(java.lang.String input,
java.lang.String reason,
int index)
input - The input stringreason - A string explaining why the input could not be parsedindex - The index at which the parse error occurred, or -1 if the index is not knownjava.lang.NullPointerException - If either the input or reason strings are nulljava.lang.IllegalArgumentException - If the error index is less than -1public URISyntaxException(java.lang.String input,
java.lang.String reason)
-1.input - The input stringreason - A string explaining why the input could not be parsedjava.lang.NullPointerException - If either the input or reason strings are nullpublic java.lang.String getInput()
@Nullable public java.lang.String getReason()
public int getIndex()
-1 if this
position is not known.public java.lang.String getMessage()
':'), 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 java.lang.Throwable