Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / exceptions / table / StopEditingTableException.java @ 10627

History | View | Annotate | Download (429 Bytes)

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

    
3
/**
4
 * @author Vicente Caballero Navarro
5
 */
6
public class StopEditingTableException extends TableEditingException {
7

    
8
        public StopEditingTableException(String table,Throwable exception) {
9
                super(table,exception);
10
                init();
11
                initCause(exception);
12
        }
13

    
14
        private void init() {
15
                messageKey = "error_stop_editing_table";
16
                formatString = "Can?t stop editing the table: %(table) ";
17
        }
18

    
19
}