Statistics
| Revision:

gvsig-raster / org.gvsig.raster.cache / trunk / org.gvsig.raster.cache / org.gvsig.raster.cache.lib.impl / src / main / java / org / gvsig / raster / cache / buffer / impl / datasource / DriverException.java @ 991

History | View | Annotate | Download (814 Bytes)

1
package org.gvsig.raster.cache.buffer.impl.datasource;
2

    
3
/**
4
 * Excepci?n lanzada por un driver de raster. Cada driver concreto tiene su propio
5
 * tipo de excepciones GdalException, MrsSIDException, JNCSFileException ... 
6
 * Estas son lanzadas hacia el nivel superior como una sola si no pueden ser gestionadas 
7
 * en el nivel dataset.io.
8
 * 
9
 * @author Nacho Brodin (nachobrodin@gmail.com)
10
 *
11
 */
12
public class DriverException extends Exception{
13
        private static final long serialVersionUID = 7412405741078802490L;
14

    
15
        /**
16
         * Constructor. Asigna el texto de la excepci?n
17
         * @param msg
18
         */
19
        public DriverException(String msg){
20
                super(msg);
21
        }
22
        
23
        /**
24
         * Constructor. Asigna el texto de la excepci?n y la excepci?n generica.
25
         * @param msg
26
         */
27
        public DriverException(String msg, Exception e){
28
                super(msg, e);
29
        }
30
}