Statistics
| Revision:

root / trunk / libraries / libGDBMS / src / com / hardcode / gdbms / engine / data / UnknownTypeException.java @ 466

History | View | Annotate | Download (894 Bytes)

1
package com.hardcode.gdbms.engine.data;
2

    
3
/**
4
 * Excepci?n que se d? cuando un driver devuelve un tipo de datos no reconocido
5
 *
6
 * @author Fernando Gonz?lez Cort?s
7
 */
8
public class UnknownTypeException extends Exception {
9
    /**
10
     * Creates a new UnknownTypeException object.
11
     */
12
    public UnknownTypeException() {
13
        super();
14
    }
15

    
16
    /**
17
     * Creates a new UnknownTypeException object.
18
     *
19
     * @param arg0
20
     */
21
    public UnknownTypeException(String arg0) {
22
        super(arg0);
23
    }
24

    
25
    /**
26
     * Creates a new UnknownTypeException object.
27
     *
28
     * @param arg0
29
     */
30
    public UnknownTypeException(Throwable arg0) {
31
        super(arg0);
32
    }
33

    
34
    /**
35
     * Creates a new UnknownTypeException object.
36
     *
37
     * @param arg0
38
     * @param arg1
39
     */
40
    public UnknownTypeException(String arg0, Throwable arg1) {
41
        super(arg0, arg1);
42
    }
43
}