Statistics
| Revision:

root / trunk / libraries / libRaster / src / org / gvsig / raster / dataset / NotSupportedExtensionException.java @ 10973

History | View | Annotate | Download (312 Bytes)

1
package org.gvsig.raster.dataset;
2

    
3
/**
4
 * Excepci?n cuando una extensi?n de fichero no est? soportada
5
 * por la aplicaci?n.
6
 * @author Nacho Brodin (nachobrodin@gmail.com)
7
 *
8
 */
9
public class NotSupportedExtensionException extends Exception{
10
        public NotSupportedExtensionException(String msg){
11
                super(msg);
12
        }
13
}