Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extPublish / src / com / iver / cit / gvsig / publish / layers / ParamsPostGisLayerException.java @ 10626

History | View | Annotate | Download (423 Bytes)

1
package com.iver.cit.gvsig.publish.layers;
2

    
3
import com.iver.cit.gvsig.exceptions.layers.LoadLayerException;
4

    
5
public class ParamsPostGisLayerException extends LoadLayerException {
6

    
7
        public ParamsPostGisLayerException(String l,Throwable exception) {
8
                super(l,exception);
9
                init();
10
        }
11
        /**
12
         *
13
         */
14
        private void init() {
15
                messageKey = "error_params_layer";
16
                formatString = "Can?t use params of the layer: %(layer) ";
17
        }
18

    
19
}