Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGDBMS / src / com / hardcode / gdbms / engine / data / DriverException.java @ 466

History | View | Annotate | Download (1000 Bytes)

1
/*
2
 * Created on 17-oct-2004
3
 */
4
package com.hardcode.gdbms.engine.data;
5

    
6
/**
7
 * Excepci?n lanzada cuando un driver no pudo resolver la petici?n que se le
8
 * realiz?. En un driver de fichero tendr? como causa una IOException, en un
9
 * driver de DB tendr? una SQLException, ...
10
 *
11
 * @author Fernando Gonz?lez Cort?s
12
 */
13
public class DriverException extends Exception {
14
    /**
15
     * Creates a new StartException object.
16
     */
17
    public DriverException() {
18
        super();
19
    }
20

    
21
    /**
22
     * Creates a new DriverException object.
23
     *
24
     * @param arg0
25
     */
26
    public DriverException(String arg0) {
27
        super(arg0);
28
    }
29

    
30
    /**
31
     * Creates a new DriverException object.
32
     *
33
     * @param arg0
34
     * @param arg1
35
     */
36
    public DriverException(String arg0, Throwable arg1) {
37
        super(arg0, arg1);
38
    }
39

    
40
    /**
41
     * Creates a new DriverException object.
42
     *
43
     * @param arg0
44
     */
45
    public DriverException(Throwable arg0) {
46
        super(arg0);
47
    }
48
}