1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package tsukuba_bunko.util;
20
21
22 /***
23 * リソースの検出に失敗したことを通知する例外クラスです。
24 * @author $Author: ppoi $
25 * @version $Revision: 1.2 $
26 */
27 public class ResourceDetectionException extends Exception {
28
29 /***
30 * serial version UID
31 */
32 private static final long serialVersionUID = 2205685841084150242L;
33
34 /***
35 * <code>ResourceDetectionException</code> のインスタンスを生成します。
36 */
37 public ResourceDetectionException()
38 {
39 super();
40 }
41
42 /***
43 * <code>ResourceDetectionException</code> のインスタンスを生成します。
44 * @param message エラーメッセージ
45 */
46 public ResourceDetectionException( String message )
47 {
48 super( message );
49 }
50
51 /***
52 * <code>ResourceDetectionException</code> のインスタンスを生成します。
53 * @param throwable 基になる例外オブジェクト
54 */
55 public ResourceDetectionException( Throwable throwable )
56 {
57 super( throwable );
58 }
59
60 /***
61 * <code>ResourceDetectionException</code> のインスタンスを生成します。
62 * @param message エラーメッセージ
63 * @param throwable 基になる例外オブジェクト
64 */
65 public ResourceDetectionException( String message, Throwable throwable )
66 {
67 super( message, throwable );
68 }
69 }