Statistics
| Revision:

svn-gvsig-desktop / tags / J2ME_compat_v1_2_Build_1209 / libraries / libFMap / src / com / iver / cit / gvsig / exceptions / visitors / StartWriterVisitorException.java @ 19509

History | View | Annotate | Download (463 Bytes)

1
package com.iver.cit.gvsig.exceptions.visitors;
2

    
3

    
4
/**
5
 * @author Vicente Caballero Navarro
6
 */
7
public class StartWriterVisitorException extends StartVisitorException {
8
        public StartWriterVisitorException(String layer,Throwable exception) {
9
                super(layer,exception);
10
                init();
11
                initCause(exception);
12
        }
13

    
14
        private void init() {
15
                messageKey = "error_start_writer_visitor";
16
                formatString = "Can?t start writer visitor the layer: %(layer) ";
17
        }
18
}