Statistics
| Revision:

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

History | View | Annotate | Download (416 Bytes)

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

    
3

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

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

    
21
}