Statistics
| Revision:

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

History | View | Annotate | Download (312 Bytes)

1
package org.gvsig.raster.buffer.cache;
2

    
3
/**
4
 * Excepci?n lanzada cuando el n?mero de p?gina al que se intenta acceder no es valido.
5
 * @author Nacho Brodin (nachobrodin@gmail.com)
6
 *
7
 */
8
public class InvalidPageNumberException extends Exception{
9
        public InvalidPageNumberException(String msg){
10
                super(msg);
11
        }
12
}