Statistics
| Revision:

gvsig-raster / org.gvsig.raster / branches / org.gvsig.raster.2.4 / org.gvsig.raster / org.gvsig.raster.lib / org.gvsig.raster.lib.buffer / org.gvsig.raster.lib.buffer.api / src / main / java / org / gvsig / raster / lib / buffer / api / exceptions / BufferException.java @ 8781

History | View | Annotate | Download (752 Bytes)

1 5452 dmartinezizquierdo
package org.gvsig.raster.lib.buffer.api.exceptions;
2 5450 fdiaz
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 5501 llmarques
    protected BufferException(String message, Throwable cause, String key, long code) {
22 5450 fdiaz
        super(message, cause, key, code);
23
    }
24
25
    /**
26 5501 llmarques
     * Default constructor
27
     *
28 5450 fdiaz
     * @param cause
29
     */
30
    public BufferException(Throwable cause) {
31 5501 llmarques
        super("Error managing buffers", cause, "_Error_managing_buffers", serialVersionUID);
32 5450 fdiaz
    }
33
34
}