Statistics
| Revision:

root / trunk / libraries / libRaster / src / org / gvsig / raster / grid / OutOfGridException.java @ 11200

History | View | Annotate | Download (278 Bytes)

1 10740 nacho
package org.gvsig.raster.grid;
2
3
/**
4
 * Excepci?n lanzada cuando se detecta que un buffer de raster es incorrecto.
5
 * @author Nacho Brodin (nachobrodin@gmail.com)
6
 *
7
 */
8
public class OutOfGridException extends Exception{
9
        public OutOfGridException(String msg){
10
                super(msg);
11
        }
12
}