01: /* Copyright 2004-2005 The Apache Software Foundation
02: *
03: * Licensed under the Apache License, Version 2.0 (the "License");
04: * you may not use this file except in compliance with the License.
05: * You may obtain a copy of the License at
06: *
07: * http://www.apache.org/licenses/LICENSE-2.0
08: *
09: * 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 {
24:
25: /**
26: *
27: */
28: public ConstraintException() {
29: super ();
30: // TODO Auto-generated constructor stub
31: }
32:
33: /**
34: * @param message
35: */
36: public ConstraintException(String message) {
37: super (message);
38: // TODO Auto-generated constructor stub
39: }
40:
41: /**
42: * @param cause
43: */
44: public ConstraintException(Throwable cause) {
45: super (cause);
46: // TODO Auto-generated constructor stub
47: }
48:
49: /**
50: * @param message
51: * @param cause
52: */
53: public ConstraintException(String message, Throwable cause) {
54: super (message, cause);
55: // TODO Auto-generated constructor stub
56: }
57:
58: }
|