| PropFileException.java |
package server.servlets;
import java.io.IOException;
/**
* PropertyFileNotFoundException Class
*/
class PropFileException extends IOException {
/**
* PropertyFileNotFoundException Constructor
*/
public PropFileException() {
super();
}
/**
* PropertyFileNotFoundException Constructor
*/
public PropFileException(String s) {
super(s);
}
/**
* PropertyFileNotFoundException Constructor
*/
private PropFileException(String path, String reason) {
super(path + ((reason == null) ? "" : " (" + reason + ")"));
}
}