Statistics
| Revision:

root / trunk / libraries / libRaster / src / org / gvsig / raster / buffer / RasterBufferInvalidException.java @ 11074

History | View | Annotate | Download (300 Bytes)

1 11074 nacho
package org.gvsig.raster.buffer;
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 RasterBufferInvalidException extends Exception{
9
        public RasterBufferInvalidException(String msg){
10
                super(msg);
11
        }
12
}