Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / raster / lib / legend / api / exceptions / ColorTableIOException.java @ 43803

History | View | Annotate | Download (689 Bytes)

1
package org.gvsig.raster.lib.legend.api.exceptions;
2

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

    
5
/**
6
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
7
 *
8
 */
9
public class ColorTableIOException extends BaseException {
10

    
11
    private static final long serialVersionUID = -5115702295937095735L;
12

    
13
    public static final String MESSAGE = "Error reading or writting color table";
14

    
15
    public static final String KEY = "_ColorTableIOException";
16

    
17
    public ColorTableIOException(Throwable ex) {
18
        super(MESSAGE, ex, KEY, serialVersionUID);
19
    }
20

    
21
    public ColorTableIOException(String message, Throwable ex) {
22
        super(message, ex, KEY, serialVersionUID);
23
    }
24
}