Statistics
| Revision:

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

History | View | Annotate | Download (501 Bytes)

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

    
3
public class CopyParametersException extends DataRuntimeException {
4

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

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

    
17
}