Statistics
| Revision:

gvsig-raster / org.gvsig.raster.tasseledcap / trunk / org.gvsig.raster.tasseledcap / org.gvsig.raster.tasseledcap.algorithm / src / main / java / org / gvsig / raster / tasseledcap / algorithm / TasseledCapException.java @ 2381

History | View | Annotate | Download (472 Bytes)

1
package org.gvsig.raster.tasseledcap.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 TasseledCapException extends ProcessException {
10
        private static final long serialVersionUID = -3022090543908771484L;
11
        
12
        public TasseledCapException(String msg){
13
                super(msg);
14
        }
15
        
16
        public TasseledCapException(String msg, Throwable e){
17
                super(msg, e);
18
        }
19
}