Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_Build_1009 / libraries / libCq CMS for java.old / src / org / cresques / io / SupersamplingNotSupportedException.java @ 12649

History | View | Annotate | Download (989 Bytes)

1
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
        /**
11
         *
12
         */
13
        public SupersamplingNotSupportedException() {
14
                super();
15

    
16
                // TODO Auto-generated constructor stub
17
        }
18

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

    
27
                // TODO Auto-generated constructor stub
28
        }
29

    
30
        /**
31
         * DOCUMENT ME!
32
         *
33
         * @param message
34
         * @param cause
35
         */
36
        public SupersamplingNotSupportedException(String message, Throwable cause) {
37
                super(message, cause);
38

    
39
                // TODO Auto-generated constructor stub
40
        }
41

    
42
        /**
43
         * DOCUMENT ME!
44
         *
45
         * @param cause
46
         */
47
        public SupersamplingNotSupportedException(Throwable cause) {
48
                super(cause);
49

    
50
                // TODO Auto-generated constructor stub
51
        }
52
}