Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.lib / src / main / java / org / gvsig / tools / IllegalValueException.java @ 1746

History | View | Annotate | Download (445 Bytes)

1
package org.gvsig.tools;
2

    
3
/**
4
 *
5
 * @author jjdelcerro
6
 */
7
public class IllegalValueException extends RuntimeException {
8
    
9
    public IllegalValueException() {
10
        super();
11
    }
12

    
13
    public IllegalValueException(String message) {
14
        super(message);
15
    }
16

    
17
    public IllegalValueException(Throwable th) {
18
        super(th);
19
    }
20

    
21
    public IllegalValueException(String message, Throwable th) {
22
        super(message, th);
23
    }
24
}