Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_Build_1015 / libraries / libDriverManager / src / com / hardcode / driverManager / DriverLoadException.java @ 13679

History | View | Annotate | Download (492 Bytes)

1 467 fernando
package com.hardcode.driverManager;
2
3
4 1237 fernando
public class DriverLoadException extends RuntimeException {
5 467 fernando
6
        /**
7
         *
8
         */
9
        public DriverLoadException() {
10
                super();
11
12
        }
13
        /**
14
         * @param message
15
         */
16
        public DriverLoadException(String message) {
17
                super(message);
18
19
        }
20
        /**
21
         * @param message
22
         * @param cause
23
         */
24
        public DriverLoadException(String message, Throwable cause) {
25
                super(message, cause);
26
27
        }
28
        /**
29
         * @param cause
30
         */
31
        public DriverLoadException(Throwable cause) {
32
                super(cause);
33
34
        }
35
}