Statistics
| Revision:

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

History | View | Annotate | Download (282 Bytes)

1
package org.gvsig.raster.dataset;
2

    
3
/**
4
 * Excepci?n cuando se intenta acceder a un fichero que no ha sido abierto
5
 * @author Nacho Brodin (nachobrodin@gmail.com)
6
 *
7
 */
8
public class FileNotOpenException extends Exception{
9
        public FileNotOpenException(String msg){
10
                super(msg);
11
        }
12
}