Statistics
| Revision:

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

History | View | Annotate | Download (405 Bytes)

1
package org.gvsig.raster.dataset;
2

    
3
/**
4
 * Excepci?n cuando una banda 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 BandFoundInListException extends Exception{
11
        final private static long serialVersionUID = 0;
12
        public BandFoundInListException(String msg){
13
                super(msg);
14
        }
15
}