Changed FilenameNotFoundException to FilenameResolutionException.

This commit is contained in:
sk89q 2011-01-30 22:06:06 -08:00
parent ee9b50264e
commit c2cd87ed50
2 changed files with 7 additions and 7 deletions

View File

@ -19,14 +19,14 @@
package com.sk89q.worldedit;
public class FilenameNotFoundException extends FilenameException {
public class FilenameResolutionException extends FilenameException {
private static final long serialVersionUID = 4673670296313383121L;
public FilenameNotFoundException(String filename) {
public FilenameResolutionException(String filename) {
super(filename);
}
public FilenameNotFoundException(String filename, String msg) {
public FilenameResolutionException(String filename, String msg) {
super(filename, msg);
}
}

View File

@ -429,13 +429,13 @@ public class WorldEdit {
String dirPath = dir.getCanonicalPath();
if (!filePath.substring(0, dirPath.length()).equals(dirPath)) {
throw new FilenameNotFoundException(filename,
throw new FilenameResolutionException(filename,
"Path is outside allowable root");
}
return f;
} catch (IOException e) {
throw new FilenameNotFoundException(filename,
throw new FilenameResolutionException(filename,
"Failed to resolve path");
}
}
@ -871,8 +871,8 @@ public class WorldEdit {
} catch (InvalidFilenameException e) {
player.printError("Filename '" + e.getFilename() + "' invalid: "
+ e.getMessage());
} catch (FilenameNotFoundException e) {
player.printError("File '" + e.getFilename() + "' not found: "
} catch (FilenameResolutionException e) {
player.printError("File '" + e.getFilename() + "' resolution error: "
+ e.getMessage());
} catch (FileSelectionAbortedException e) {
player.printError("File selection aborted.");