3b5a8e7baa34b4dc739835dff7eecdae24eca629
[org.ibex.core.git] / src / org / mozilla / javascript / ClassDefinitionException.java
1 \r
2 /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-\r
3  *\r
4  * The contents of this file are subject to the Netscape Public\r
5  * License Version 1.1 (the "License"); you may not use this file\r
6  * except in compliance with the License. You may obtain a copy of\r
7  * the License at http://www.mozilla.org/NPL/\r
8  *\r
9  * Software distributed under the License is distributed on an "AS\r
10  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express oqr\r
11  * implied. See the License for the specific language governing\r
12  * rights and limitations under the License.\r
13  *\r
14  * The Original Code is Rhino code, released\r
15  * May 6, 1999.\r
16  *\r
17  * The Initial Developer of the Original Code is Netscape\r
18  * Communications Corporation.  Portions created by Netscape are\r
19  * Copyright (C) 1997-1999 Netscape Communications Corporation. All\r
20  * Rights Reserved.\r
21  *\r
22  * Contributor(s): \r
23  *\r
24  * Alternatively, the contents of this file may be used under the\r
25  * terms of the GNU Public License (the "GPL"), in which case the\r
26  * provisions of the GPL are applicable instead of those above.\r
27  * If you wish to allow use of your version of this file only\r
28  * under the terms of the GPL and not to allow others to use your\r
29  * version of this file under the NPL, indicate your decision by\r
30  * deleting the provisions above and replace them with the notice\r
31  * and other provisions required by the GPL.  If you do not delete\r
32  * the provisions above, a recipient may use your version of this\r
33  * file under either the NPL or the GPL.\r
34  */\r
35 // API class\r
36 \r
37 package org.mozilla.javascript;\r
38 \r
39 /**\r
40  * Thrown if errors are detected while attempting to define a host object\r
41  * from a Java class.\r
42  */\r
43 public class ClassDefinitionException extends Exception {\r
44 \r
45     public ClassDefinitionException(String detail) {\r
46         super(detail);\r
47     }\r
48 }\r