Statistics
| Revision:

gvsig-raster / org.gvsig.raster.roimask / trunk / org.gvsig.raster.roimask / org.gvsig.raster.roimask.algorithm / src / main / java / org / gvsig / raster / roimask / algorithm / ROIMaskException.java @ 2324

History | View | Annotate | Download (456 Bytes)

1
package org.gvsig.raster.roimask.algorithm;
2

    
3
import org.gvsig.raster.algorithm.process.ProcessException;
4

    
5

    
6
/**
7
 * This exception is thrown if happen problems processing data with this algorithm.
8
 */
9
public class ROIMaskException extends ProcessException {
10
        private static final long serialVersionUID = -3022090543908771484L;
11
        
12
        public ROIMaskException(String msg){
13
                super(msg);
14
        }
15
        
16
        public ROIMaskException(String msg, Throwable e){
17
                super(msg, e);
18
        }
19
}