Statistics
| Revision:

root / trunk / libraries / libRaster / src / org / gvsig / raster / dataset / FileFoundInListException.java @ 11079

History | View | Annotate | Download (357 Bytes)

1
package org.gvsig.raster.dataset;
2

    
3
/**
4
 * Excepci?n cuando un fichero no se encuentra en una lista en la
5
 * que se est? buscando y dicha falta constituye una situaci?n de
6
 * error.
7
 * @author Nacho Brodin (nachobrodin@gmail.com)
8
 *
9
 */
10
public class FileFoundInListException extends Exception{
11
        public FileFoundInListException(String msg){
12
                super(msg);
13
        }
14
}