Statistics
| Revision:

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

History | View | Annotate | Download (445 Bytes)

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

    
3

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

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

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

    
20
}