Statistics
| Revision:

gvsig-raster / org.gvsig.raster.roimask / trunk / org.gvsig.raster.roimask / org.gvsig.raster.roimask.lib / org.gvsig.raster.roimask.lib.api / src / main / java / org / gvsig / raster / roimask / lib / ROIMaskMessageException.java @ 2324

History | View | Annotate | Download (773 Bytes)

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

    
3
import org.gvsig.tools.exception.BaseException;
4

    
5
/**
6
 * Exception thrown when there is an error getting a Raster message.
7
 * 
8
 * @author gvSIG team
9
 * @version $Id$
10
 */
11
public class ROIMaskMessageException extends BaseException {
12

    
13
    private static final long serialVersionUID = -4051458353306878010L;
14

    
15
    private static final String MESSAGE =
16
        "An error has been produced " + "getting the Raster message";
17

    
18
    private static final String KEY = "_RasterMessageException";
19

    
20
    /**
21
     * Creates a new {@link ROIMaskMessageException}.
22
     * 
23
     * @param cause
24
     *            the original cause
25
     */
26
    public ROIMaskMessageException(Throwable cause) {
27
        super(MESSAGE, cause, KEY, serialVersionUID);
28
    }
29
}