Statistics
| Revision:

root / trunk / extensions / extRasterTools-SE / src / org / gvsig / fmap / raster / grid / roi / InvalidROIsShpException.java @ 26023

History | View | Annotate | Download (307 Bytes)

1
package org.gvsig.fmap.raster.grid.roi;
2

    
3
public class InvalidROIsShpException extends Exception {
4

    
5
        private static final long serialVersionUID = 5095144339285844477L;
6

    
7
        /**
8
         * Constructor. Asigna el texto de la excepci?n
9
         * @param msg
10
         */
11
        public InvalidROIsShpException(String msg){
12
                super(msg);
13
        }
14

    
15
}