Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGDBMS / src / com / hardcode / gdbms / engine / instruction / SemanticException.java @ 887

History | View | Annotate | Download (838 Bytes)

1 466 fernando
package com.hardcode.gdbms.engine.instruction;
2
3
/**
4
 * Clase base de las excepciones sem?nticas
5
 *
6
 * @author Fernando Gonz?lez Cort?s
7
 */
8
public class SemanticException extends Exception {
9
    /**
10
     * Creates a new SemanticException object.
11
     */
12
    public SemanticException() {
13
        super();
14
    }
15
16
    /**
17
     * Creates a new SemanticException object.
18
     *
19
     * @param arg0
20
     */
21
    public SemanticException(String arg0) {
22
        super(arg0);
23
    }
24
25
    /**
26
     * Creates a new SemanticException object.
27
     *
28
     * @param arg0
29
     */
30
    public SemanticException(Throwable arg0) {
31
        super(arg0);
32
    }
33
34
    /**
35
     * Creates a new SemanticException object.
36
     *
37
     * @param arg0
38
     * @param arg1
39
     */
40
    public SemanticException(String arg0, Throwable arg1) {
41
        super(arg0, arg1);
42
    }
43
}