Statistics
| Revision:

gvsig-raster / org.gvsig.raster.principalcomponents / trunk / org.gvsig.raster.principalcomponents / org.gvsig.raster.principalcomponents.algorithm / src / main / java / org / gvsig / raster / principalcomponents / algorithm / PrincipalComponentsException.java @ 2474

History | View | Annotate | Download (504 Bytes)

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