Statistics
| Revision:

root / branches / v2_0_0_prep / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / exceptions / DriverLayerException.java @ 21200

History | View | Annotate | Download (414 Bytes)

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

    
3

    
4
/**
5
 * @author Vicente Caballero Navarro
6
 */
7
public class DriverLayerException extends LoadLayerException {
8

    
9
        public DriverLayerException(String l,Throwable exception) {
10
                super(l,exception);
11
                init();
12
        }
13
        /**
14
         *
15
         */
16
        private void init() {
17
                messageKey = "error_driver_layer";
18
                formatString = "Can?t load driver of the layer: %(layer) ";
19
        }
20
}