Statistics
| Revision:

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

History | View | Annotate | Download (464 Bytes)

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

    
3
public class CopyException extends DataException {
4

    
5
        /**
6
         *
7
         */
8
        private static final long serialVersionUID = 6998431565823817880L;
9
        private final static String MESSAGE_FORMAT = "Exception in copy '%(name)s'.";
10
        private final static String MESSAGE_KEY = "_CopyException";
11

    
12
        public CopyException(String name, Throwable cause) {
13
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
14
                setValue("name", name);
15
        }
16

    
17
}