Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.raster / org.gvsig.raster.lib / org.gvsig.raster.lib.buffer.impl / src / main / java / org / gvsig / raster / lib / buffer / impl / exceptions / CreateBufferException.java @ 44831

History | View | Annotate | Download (668 Bytes)

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

    
3
import org.gvsig.raster.lib.buffer.api.exceptions.BufferException;
4

    
5

    
6

    
7
/**
8
 * @author fdiaz
9
 *
10
 */
11
public class CreateBufferException extends BufferException {
12

    
13
    /**
14
     *
15
     */
16
    private static final long serialVersionUID = -7000256321995825067L;
17
    /**
18
     *
19
     */
20
    private final static String MESSAGE_FORMAT = "Exception creating buffer.";
21
    private final static String MESSAGE_KEY = "_CreateBufferException";
22

    
23
    /**
24
     * @param type
25
     * @param cause
26
     */
27
    public CreateBufferException(Throwable cause) {
28
        super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
29
    }
30
}