Statistics
| Revision:

root / trunk / libraries / libGDBMS / src / com / hardcode / gdbms / engine / instruction / TableNotFoundException.java @ 466

History | View | Annotate | Download (954 Bytes)

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

    
3
/**
4
 * Excepci?n que se lanza cuando no se encuentra una tabla en la instrucci?n
5
 * introducida por el usuario
6
 *
7
 * @author Fernando Gonz?lez Cort?s
8
 */
9
public class TableNotFoundException extends SemanticException {
10
    /**
11
     * Creates a new TableNotFoundException object.
12
     */
13
    public TableNotFoundException() {
14
        super();
15
    }
16

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

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

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