/Users/lyon/j4p/src/net/server/servlets/PropFileException.java
|
1 package net.server.servlets;
2
3 import java.io.IOException;
4
5 /**
6 * PropertyFileNotFoundException Class
7 */
8
9 class PropFileException extends IOException {
10
11 /**
12 * PropertyFileNotFoundException Constructor
13 */
14
15 public PropFileException() {
16 super();
17 }
18
19 /**
20 * PropertyFileNotFoundException Constructor
21 */
22
23 public PropFileException(String s) {
24 super(s);
25 }
26
27 /**
28 * PropertyFileNotFoundException Constructor
29 */
30
31 private PropFileException(String path, String reason) {
32 super(path + ((reason == null) ? "" : " (" + reason + ")"));
33 }
34
35 }
36