Serializable
public class URISyntaxException extends Exception
Constructor | Description |
---|---|
URISyntaxException |
Constructs an instance from the given input string and reason. |
URISyntaxException |
Constructs an instance from the given input string, reason, and error index. |
Modifier and Type | Method | 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 null
IllegalArgumentException
- If the error index is less than -1
public URISyntaxException(String input, String reason)
-1
.input
- The input stringreason
- A string explaining why the input could not be parsedNullPointerException
- If either the input or reason strings are null
public String getInput()
public String getReason()
public int getIndex()
-1
if this position is not known.public 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 Throwable
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/net/URISyntaxException.html