Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.file / org.gvsig.fmap.dal.file.shp / src / main / java / org / gvsig / fmap / dal / store / shp / utils / InconsistenciesInGeometryTypeException.java @ 41808

History | View | Annotate | Download (634 Bytes)

1

    
2
package org.gvsig.fmap.dal.store.shp.utils;
3

    
4
import org.gvsig.fmap.dal.exception.ReadException;
5

    
6

    
7
public class InconsistenciesInGeometryTypeException extends ReadException {
8

    
9
    private final static String MESSAGE_FORMAT = "Inconsistencies in geometry type '%(store)'.";
10
    private final static String MESSAGE_KEY = "InconsistenciesInGeometryTypeException";
11
    private static final long serialVersionUID = -1098020049568796722L;
12

    
13
    public InconsistenciesInGeometryTypeException(String store, Throwable cause) {
14
        super(MESSAGE_FORMAT, cause, MESSAGE_KEY, (int)serialVersionUID);
15
        setValue("store", store);
16
    }
17

    
18
}