Statistics
| Revision:

root / branches / v2_0_0_prep / applications / appgvSIG / src / org / gvsig / app / project / documents / table / exceptions / StartEditingTableException.java @ 29596

History | View | Annotate | Download (449 Bytes)

1
package org.gvsig.app.project.documents.table.exceptions;
2

    
3

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

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

    
15
        private void init() {
16
                messageKey = "error_start_editing_table";
17
                formatString = "Can�t start editing the table: %(table) ";
18
        }
19

    
20
}