Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / DriverIOException.java @ 213

History | View | Annotate | Download (498 Bytes)

1
/* Generated by Together */
2

    
3
package com.iver.cit.gvsig.fmap;
4

    
5
public class DriverIOException extends Exception{
6
        /**
7
         * 
8
         */
9
        public DriverIOException() {
10
                super();
11

    
12
        }
13
        /**
14
         * @param message
15
         */
16
        public DriverIOException(String message) {
17
                super(message);
18

    
19
        }
20
        /**
21
         * @param message
22
         * @param cause
23
         */
24
        public DriverIOException(String message, Throwable cause) {
25
                super(message, cause);
26

    
27
        }
28
        /**
29
         * @param cause
30
         */
31
        public DriverIOException(Throwable cause) {
32
                super(cause);
33

    
34
        }
35
}