KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > modules > ojb > constraints > ConstraintException


1 /* Copyright 2004-2005 The Apache Software Foundation
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */

15 package xdoclet.modules.ojb.constraints;
16
17 /**
18  * @author tomdz
19  *
20  * To change the template for this generated type comment go to
21  * Window>Preferences>Java>Code Generation>Code and Comments
22  */

23 public class ConstraintException extends Exception JavaDoc
24 {
25
26     /**
27      *
28      */

29     public ConstraintException()
30     {
31         super();
32         // TODO Auto-generated constructor stub
33
}
34
35     /**
36      * @param message
37      */

38     public ConstraintException(String JavaDoc message)
39     {
40         super(message);
41         // TODO Auto-generated constructor stub
42
}
43
44     /**
45      * @param cause
46      */

47     public ConstraintException(Throwable JavaDoc cause)
48     {
49         super(cause);
50         // TODO Auto-generated constructor stub
51
}
52
53     /**
54      * @param message
55      * @param cause
56      */

57     public ConstraintException(String JavaDoc message, Throwable JavaDoc cause)
58     {
59         super(message, cause);
60         // TODO Auto-generated constructor stub
61
}
62
63 }
64
Popular Tags