|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
java.nio.file.InvalidPathException
public class InvalidPathException
Disabled: no SafeJ information.
Unchecked exception thrown when path string cannot be converted into a
Path because the path string contains invalid characters, or
the path string is invalid for other file system specific reasons.
| Constructor Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Throwable |
|---|
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public 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 known
NullPointerException - if either the input or reason strings are null
IllegalArgumentException - if the error index is less than -1
public InvalidPathException(String input,
String reason)
input - the input stringreason - a string explaining why the input was rejected
NullPointerException - if either the input or reason strings are null| Method Detail |
|---|
public String getInput()
public String getReason()
public int getIndex()
public String getMessage()
getMessage in class Throwable
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||