Home | History | Annotate | Download | only in filesystem

Lines Matching refs:path

29      * The path involved in the file system operation that caused the exception

31 private String path;
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) {
45 super(path);
46 this.path = path;
51 * @param path - the path involved in the file system operation that caused the exception
55 public FileSystemException(String path, String messageKey, Throwable cause) {
56 super(path, cause);
57 this.path = path;
62 return path;
65 public void setPath(String path) {
66 this.path = path;