KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > xquark > xml > xdbc > XMLDBCNotSupportedException


1 /*
2  * This file belongs to the XQuark distribution.
3  * Copyright (C) 2003 Universite de Versailles Saint-Quentin.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307.
18  * You can also get it at http://www.gnu.org/licenses/lgpl.html
19  *
20  * For more information on this software, see http://www.xquark.org.
21  */

22
23 package org.xquark.xml.xdbc;
24
25 /**
26  * This class describes a XMLDBC (Xml DataBase Connectivity) exception for various use in XMLDBC API.<BR>
27  * This is an exception used when you try to set the value of an object, a property or a feature with bad value
28  * or if it
29  * is not allowed.<BR>
30  * There is no speific exception code in this class.<BR><BR>
31  * CAUTION: This XMLDBC API is a proposal!<BR>
32  */

33 public class XMLDBCNotSupportedException extends XMLDBCException {
34  
35
36
37     //*************************** Constructor declaration:
38

39     /**
40      * Constructor with error code.
41      * @param code the code featuring the kind of error (see constants).
42      */

43     public XMLDBCNotSupportedException(int code) {
44         super(code);
45     }
46
47     /**
48      * Constructor with message.
49      * @param msg a message to describe the exception.
50      */

51     public XMLDBCNotSupportedException(java.lang.String JavaDoc msg) {
52         super(msg);
53     }
54
55     /**
56      * Constructor with error code and message.
57      * @param code the code featuring the kind of error (see constants).
58      * @param msg a message to describe the exception.
59      */

60     public XMLDBCNotSupportedException(int code, java.lang.String JavaDoc msg) {
61         super(code, msg);
62     }
63
64     /**
65      * Constructor with message and underlying exception.
66      * @param msg a message to describe the exception.
67      * @param exception the underlying exception (or error).
68      */

69     public XMLDBCNotSupportedException(java.lang.String JavaDoc msg, java.lang.Throwable JavaDoc exception) {
70         super(msg, exception);
71     }
72
73     /**
74      * Constructor with error code, message and underlying exception.
75      * @param code the code featuring the kind of error (see constants).
76      * @param msg a message to describe the exception.
77      * @param exception the underlying exception (or error).
78      */

79     public XMLDBCNotSupportedException(int code, java.lang.String JavaDoc msg, java.lang.Throwable JavaDoc exception) {
80         super(code, msg, exception);
81     }
82 }
83
Popular Tags