Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / exceptions / visitors / StartWriterVisitorException.java @ 35160

History | View | Annotate | Download (478 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
}
19

    
20
// [eiel-gestion-excepciones]