Statistics
| Revision:

gvsig-raster / org.gvsig.raster.cache / trunk / org.gvsig.raster.cache / org.gvsig.raster.cache.lib.impl / deprecated / buffer / impl / datasource / FileNotOpenException.java @ 1939

History | View | Annotate | Download (373 Bytes)

1
package org.gvsig.raster.cache.buffer.impl.datasource;
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
        private static final long serialVersionUID = -6732162228052967671L;
10

    
11
        public FileNotOpenException(String msg){
12
                super(msg);
13
        }
14
}