Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / feature / exceptions / AttributeFeatureTypeSizeException.java @ 24496

History | View | Annotate | Download (570 Bytes)

1
package org.gvsig.fmap.dal.feature.exceptions;
2

    
3
import org.gvsig.fmap.dal.exceptions.DataException;
4

    
5
public class AttributeFeatureTypeSizeException extends DataException {
6

    
7
        /**
8
         *
9
         */
10
        private static final long serialVersionUID = 2997663523084109588L;
11

    
12
        private final static String MESSAGE_FORMAT = "invalid size '%(size)s'.";
13
        private final static String MESSAGE_KEY = "_AttributeFeatureTypeSizeException";
14

    
15
        public AttributeFeatureTypeSizeException(int size) {
16
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
17
                setValue("size", Integer.toString(size));
18
        }
19
}