Statistics
| Revision:

root / trunk / libraries / libRaster / src / org / gvsig / raster / dataset / RasterDriverException.java @ 10996

History | View | Annotate | Download (338 Bytes)

1 10939 nacho
package org.gvsig.raster.dataset;
2
3
/**
4
 * Excepci?n generica cuando se produce un error en el driver que no corresponde a ninguna de
5
 * las excepciones definidas.
6
 *
7
 * @author Nacho Brodin (nachobrodin@gmail.com)
8
 *
9
 */
10
public class RasterDriverException extends Exception{
11
        public RasterDriverException(String msg){
12
                super(msg);
13
        }
14
}