KickJava   Java API By Example, From Geeks To Geeks.

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


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 an object, a property or a feature is not recognized by driver.<BR>
28  * There is no specific exception code in this class.<BR><BR>
29  * CAUTION: This XMLDBC API is a proposal!<BR>
30  */

31 public class XMLDBCNotRecognizedException extends XMLDBCException {
32  
33
34
35     //*************************** Constructor declaration:
36

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

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

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

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

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

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