Home | History | Annotate | Download | only in filesystem

Lines Matching refs:path

19  * Exception thrown when a path/filename is not valid. Causes include:
22 * <li>The path specifies a new filename, but its parent directory does not exist</li>
23 * <li>The path is expected to be a file, but actually specifies an existing directory</li>
31 * @param path - the path involved in the file system operation that caused the exception
33 public InvalidFilenameException(String path) {
34 super(path, MESSAGE_KEY);
38 * @param path - the path involved in the file system operation that caused the exception
41 public InvalidFilenameException(String path, Throwable cause) {
42 super(path, MESSAGE_KEY, cause);