View Javadoc

1   /*
2    * All Rights Reserved.
3    * Copyright (C) 1999-2005 Tsukuba Bunko.
4    *
5    * Licensed under the BSD License ("the License"); you may not use
6    * this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    *
9    *       http://www.tsukuba-bunko.org/licenses/LICENSE.txt
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   *
17   * $Id: ResourceDetectionException.java,v 1.2 2005/07/23 19:06:28 ppoi Exp $
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  }