Statistics
| Revision:

root / trunk / libraries / libRaster / src / org / gvsig / raster / dataset / SupersamplingNotSupportedException.java @ 11042

History | View | Annotate | Download (830 Bytes)

1
package org.gvsig.raster.dataset;
2

    
3
/**
4
 * Excepci?n que indica que un driver no soporta supersampling, es decir no se pueden
5
 * tomar muestras del contenido de un pixel en distintas posiciones.
6
 *
7
 * @author Nacho Brodin (nachobrodin@gmail.com)
8
 */
9
public class SupersamplingNotSupportedException extends Exception {
10
        /**
11
         *
12
         */
13
        public SupersamplingNotSupportedException() {
14
                super();
15
        }
16

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

    
26
        /**
27
         * DOCUMENT ME!
28
         *
29
         * @param message
30
         * @param cause
31
         */
32
        public SupersamplingNotSupportedException(String message, Throwable cause) {
33
                super(message, cause);
34
        }
35

    
36
        /**
37
         * DOCUMENT ME!
38
         *
39
         * @param cause
40
         */
41
        public SupersamplingNotSupportedException(Throwable cause) {
42
                super(cause);
43
        }
44
}