Statistics
| Revision:

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

History | View | Annotate | Download (939 Bytes)

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

    
3
/**
4
 * Se da cuando no hay ning?n campo con el nombre dado en las tablas de la
5
 * cl?usula FROM
6
 *
7
 * @author Fernando Gonz?lez Cort?s
8
 */
9
public class FieldNotFoundException extends SemanticException {
10
    /**
11
     * Creates a new FieldNotFoundException object.
12
     */
13
    public FieldNotFoundException() {
14
        super();
15
    }
16

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

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

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