public class InvalidPathException extends IllegalArgumentException
Path
时 ,由于路径字符串包含无效字符或路径字符串对其他文件系统特定的原因无效,因此抛出未检查的异常。
Constructor and Description |
---|
InvalidPathException(String input, String reason)
从给定的输入字符串构造一个实例和原因。
|
InvalidPathException(String input, String reason, int index)
从给定的输入字符串,原因和错误索引构造一个实例。
|
Modifier and Type | Method and Description |
---|---|
int |
getIndex()
返回到发生错误的位置的输入字符串中的索引,如果此位置
未知,则
返回-1 。
|
String |
getInput()
返回输入字符串。
|
String |
getMessage()
返回描述错误的字符串。
|
String |
getReason()
返回一个字符串,解释为什么输入字符串被拒绝。
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public InvalidPathException(String input, String reason, int index)
input
- 输入字符串
reason
- 一个解释为什么输入被拒绝的字符串
index
- 发生错误的索引,如果索引未知,
则为-1
NullPointerException
- 输入或原因字符串是否为
null
IllegalArgumentException
- 如果错误指数小于
-1
public InvalidPathException(String input, String reason)
input
- 输入字符串
reason
- 一个字符串,解释为什么输入被拒绝
NullPointerException
- 输入或原因字符串是否为
null
public String getInput()
public String getReason()
public int getIndex()
public String getMessage()
getMessage
在
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, 2014, Oracle and/or its affiliates. All rights reserved.