Statistics
| Revision:

root / trunk / libraries / libCresques / src / org / cresques / io / SupersamplingNotSupportedException.java @ 13130

History | View | Annotate | Download (1.03 KB)

1 13128 bsanchez
package org.cresques.io;
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 (brodin_ign@gva.es)
8
 */
9
public class SupersamplingNotSupportedException extends Exception {
10 13130 bsanchez
        private static final long serialVersionUID = -2080020404285645808L;
11
12 13128 bsanchez
        /**
13
         *
14
         */
15
        public SupersamplingNotSupportedException() {
16
                super();
17
18
                // TODO Auto-generated constructor stub
19
        }
20
21
        /**
22
         * DOCUMENT ME!
23
         *
24
         * @param message
25
         */
26
        public SupersamplingNotSupportedException(String message) {
27
                super(message);
28
29
                // TODO Auto-generated constructor stub
30
        }
31
32
        /**
33
         * DOCUMENT ME!
34
         *
35
         * @param message
36
         * @param cause
37
         */
38
        public SupersamplingNotSupportedException(String message, Throwable cause) {
39
                super(message, cause);
40
41
                // TODO Auto-generated constructor stub
42
        }
43
44
        /**
45
         * DOCUMENT ME!
46
         *
47
         * @param cause
48
         */
49
        public SupersamplingNotSupportedException(Throwable cause) {
50
                super(cause);
51
52
                // TODO Auto-generated constructor stub
53
        }
54
}