Revision 10627 trunk/libraries/libGDBMS/src/main/java/com/hardcode/gdbms/engine/data/NoSuchTableException.java

View differences:

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

  
3
import java.util.Map;
4

  
5
import org.gvsig.exceptions.BaseException;
6

  
3 7
/**
4 8
 * Excepci?n que indica que a partir del nombre de una tabla no ha sido posible
5 9
 * encontrar el fichero asociado. Entre las causas comunes que ocasionan una
......
9 13
 *
10 14
 * @author Fernando Gonz?lez Cort?s
11 15
 */
12
public class NoSuchTableException extends Exception {
16
public class NoSuchTableException extends BaseException {
13 17
    /**
14 18
     * Creates a new NoSuchTableException object.
15 19
     */
......
23 27
     * @param arg0
24 28
     */
25 29
    public NoSuchTableException(String arg0) {
26
        super(arg0);
30
//        super(arg0);
27 31
    }
32
//
33
//    /**
34
//     * Creates a new NoSuchTableException object.
35
//     *
36
//     * @param arg0
37
//     */
38
//    public NoSuchTableException(Throwable arg0) {
39
//        super(arg0);
40
//    }
41
//
42
//    /**
43
//     * Creates a new NoSuchTableException object.
44
//     *
45
//     * @param arg0
46
//     * @param arg1
47
//     */
48
//    public NoSuchTableException(String arg0, Throwable arg1) {
49
//        super(arg0, arg1);
50
//    }
28 51

  
29
    /**
30
     * Creates a new NoSuchTableException object.
31
     *
32
     * @param arg0
33
     */
34
    public NoSuchTableException(Throwable arg0) {
35
        super(arg0);
36
    }
37

  
38
    /**
39
     * Creates a new NoSuchTableException object.
40
     *
41
     * @param arg0
42
     * @param arg1
43
     */
44
    public NoSuchTableException(String arg0, Throwable arg1) {
45
        super(arg0, arg1);
46
    }
52
	protected Map values() {
53
		// TODO Auto-generated method stub
54
		return null;
55
	}
47 56
}

Also available in: Unified diff