01: package org.apache.ojb.otm.core;
02:
03: /* Copyright 2003-2005 The Apache Software Foundation
04: *
05: * Licensed under the Apache License, Version 2.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: public class ConnectionException extends OTMGenericException {
18:
19: /**
20: * Constructor for ConnectionException.
21: */
22: public ConnectionException() {
23: super ();
24: }
25:
26: /**
27: * Constructor for ConnectionException.
28: * @param msg
29: */
30: public ConnectionException(String msg) {
31: super (msg);
32: }
33:
34: /**
35: * Constructor for ConnectionException.
36: * @param cause
37: */
38: public ConnectionException(Throwable cause) {
39: super (cause);
40: }
41:
42: /**
43: * Constructor for ConnectionException.
44: * @param msg
45: * @param cause
46: */
47: public ConnectionException(String msg, Throwable cause) {
48: super(msg, cause);
49: }
50:
51: }
|