Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libRaster / src / org / gvsig / raster / dataaccess / buffer / RasterBufferInvalidException.java @ 10756

History | View | Annotate | Download (311 Bytes)

1
package org.gvsig.raster.dataaccess.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
}