Statistics
| Revision:

root / branches / Mobile_Compatible_Hito_1 / libProjectionAPI / src / org / gvsig / projection / exceptions / ProjectionCreationException.java @ 21820

History | View | Annotate | Download (707 Bytes)

1
package org.gvsig.projection.exceptions;
2

    
3
import java.util.Hashtable;
4
import java.util.Map;
5

    
6
import org.gvsig.exceptions.BaseException;
7

    
8
public class ProjectionCreationException extends BaseException {
9
        private static final long serialVersionUID = 4924434630213400792L;
10

    
11
        public ProjectionCreationException(Throwable exception) {
12
                init();
13
                initCause(exception);
14
        }        
15
        
16
        private void init() {
17
                messageKey = "error_crs_factory";
18
                formatString = "Error creating CRS Factory";
19
                code = serialVersionUID;                
20
        }
21

    
22
        /*
23
         * (non-Javadoc)
24
         * @see org.gvsig.exceptions.BaseException#values()
25
         */
26
        protected Map values() {
27
                Hashtable params = new Hashtable();
28
                return params;                
29
        }
30
}