OSDN Git Service

メッセージを国際化対応しました。
[deployer/repo.git] / deployer / trunk / src / main / java / jp / sourceforge / deployer / ClassLoaderUnloadedException.java
1 /*\r
2  * Copyright (C) 2007 uguu at users.sourceforge.jp, All Rights Reserved.\r
3  *\r
4  * Redistribution and use in source and binary forms, with or without\r
5  * modification, are permitted provided that the following conditions\r
6  * are met:\r
7  *\r
8  *    1. Redistributions of source code must retain the above copyright\r
9  *       notice, this list of conditions and the following disclaimer.\r
10  *\r
11  *    2. Redistributions in binary form must reproduce the above copyright\r
12  *       notice, this list of conditions and the following disclaimer in the\r
13  *       documentation and/or other materials provided with the distribution.\r
14  *\r
15  *    3. Neither the name of Clarkware Consulting, Inc. nor the names of its\r
16  *       contributors may be used to endorse or promote products derived\r
17  *       from this software without prior written permission. For written\r
18  *       permission, please contact clarkware@clarkware.com.\r
19  *\r
20  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\r
21  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\r
22  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL\r
23  * CLARKWARE CONSULTING OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\r
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\r
26  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\r
27  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r
28  * NEGLIGENCE OR OTHERWISE) ARISING IN  ANY WAY OUT OF THE USE OF THIS SOFTWARE,\r
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
30  */\r
31 \r
32 package jp.sourceforge.deployer;\r
33 \r
34 /**\r
35  * <p>\r
36  * クラスローダーが既に破棄されていることを表す例外です。クラスローダーが破棄されているにもかかわらず、何らかの操作を行おうとしたときにスローされます。\r
37  * </p>\r
38  * \r
39  * @author $Author$\r
40  * @version $Rev$\r
41  */\r
42 public class ClassLoaderUnloadedException extends RuntimeException {\r
43 \r
44     /**\r
45      * <p>\r
46      * インスタンスを初期化します。\r
47      * </p>\r
48      */\r
49     public ClassLoaderUnloadedException() {\r
50         super(Message.classLoaderUnloaded());\r
51     }\r
52 \r
53 }\r