Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGDBMS / src / com / hardcode / gdbms / engine / customQuery / QueryException.java @ 1956

History | View | Annotate | Download (932 Bytes)

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

    
3
/**
4
 * If there is an error in the Custom Query execution
5
 *
6
 * @author Fernando Gonz?lez Cort?s
7
 */
8
public class QueryException extends Exception {
9
    /**
10
     *
11
     */
12
    public QueryException() {
13
        super();
14

    
15
        // TODO Auto-generated constructor stub
16
    }
17

    
18
    /**
19
     * DOCUMENT ME!
20
     *
21
     * @param message
22
     */
23
    public QueryException(String message) {
24
        super(message);
25

    
26
        // TODO Auto-generated constructor stub
27
    }
28

    
29
    /**
30
     * DOCUMENT ME!
31
     *
32
     * @param message
33
     * @param cause
34
     */
35
    public QueryException(String message, Throwable cause) {
36
        super(message, cause);
37

    
38
        // TODO Auto-generated constructor stub
39
    }
40

    
41
    /**
42
     * DOCUMENT ME!
43
     *
44
     * @param cause
45
     */
46
    public QueryException(Throwable cause) {
47
        super(cause);
48

    
49
        // TODO Auto-generated constructor stub
50
    }
51
}