Statistics
| Revision:

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

History | View | Annotate | Download (504 Bytes)

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

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

    
5
public class FinishEditingException extends DataException {
6

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

    
12
        private final static String MESSAGE_FORMAT = "Can't finish edition.";
13
        private final static String MESSAGE_KEY = "_FinishEditingException";
14

    
15
        public FinishEditingException(Throwable cause) {
16
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
17
        }
18
}