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 / BufferOperationException.java @ 43803

History | View | Annotate | Download (788 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 BufferOperationException extends BaseException {
11

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

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

    
21
    protected BufferOperationException(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 BufferOperationException(Throwable cause) {
31
        super("Error processing buffer", cause, "_Error_processing_buffer", serialVersionUID);
32
    }
33

    
34
}