public class URISyntaxException extends Exception
URI
,
Serialized FormConstructor and Description |
---|
URISyntaxException(String input,
String reason)
Constructs an instance from the given input string and reason.
|
URISyntaxException(String input,
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.
|
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, toString
public URISyntaxException(String input, 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 knownNullPointerException
- If either the input or reason strings are nullIllegalArgumentException
- If the error index is less than -1public URISyntaxException(String input, String reason)
input
- The input stringreason
- A string explaining why the input could not be parsedNullPointerException
- If either the input or reason strings are nullpublic String getInput()
public String getReason()
public int getIndex()
public String getMessage()
getMessage
in class Throwable
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2012, Oracle and/or its affiliates. All rights reserved.