Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.library / org.gvsig.raster / org.gvsig.raster.lib / org.gvsig.raster.lib.buffer.api / src / main / java / org / gvsig / raster / lib / buffer / api / exceptions / BufferException.java @ 43803

History | View | Annotate | Download (752 Bytes)

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

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

    
5
/**
6
 *
7
 * @author fdiaz
8
 *
9
 */
10
public class BufferException extends BaseException {
11

    
12
    /**
13
     *
14
     */
15
    private static final long serialVersionUID = -8781575384775079578L;
16

    
17
    protected BufferException(String message, String key, long code) {
18
        super(message, key, code);
19
    }
20

    
21
    protected BufferException(String message, Throwable cause, String key, long code) {
22
        super(message, cause, key, code);
23
    }
24

    
25
    /**
26
     * Default constructor
27
     * 
28
     * @param cause
29
     */
30
    public BufferException(Throwable cause) {
31
        super("Error managing buffers", cause, "_Error_managing_buffers", serialVersionUID);
32
    }
33

    
34
}