Serializablepublic class InvalidPathException extends IllegalArgumentException
Path because the path string contains invalid characters, or
the path string is invalid for other file system specific reasons.| Constructor | Description |
|---|---|
InvalidPathException(String input,
String reason) |
Constructs an instance from the given input string and reason.
|
InvalidPathException(String input,
String reason,
int index) |
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
error occurred, or
-1 if this position is not known. |
String |
getInput() |
Returns the input string.
|
String |
getMessage() |
Returns a string describing the error.
|
String |
getReason() |
Returns a string explaining why the input string was rejected.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic InvalidPathException(String input, String reason, int index)
input - the input stringreason - a string explaining why the input was rejectedindex - the index at which the 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 InvalidPathException(String input, String reason)
-1.input - the input stringreason - a string explaining why the input was rejectedNullPointerException - if either the input or reason strings are nullpublic 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 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, 2017, Oracle and/or its affiliates. 500 Oracle Parkway
Redwood Shores, CA 94065 USA. All rights reserved.
DRAFT 9-Debian+0-9b153-2