Statistics
| Revision:

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

History | View | Annotate | Download (537 Bytes)

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

    
3

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

    
9
        /**
10
         * 
11
         */
12
        private static final long serialVersionUID = 5231674331725098637L;
13

    
14
        public CancelEditingTableException(String table,Throwable exception) {
15
                super(table,exception);
16
                init();
17
                initCause(exception);
18
        }
19

    
20
        private void init() {
21
                messageKey = "error_cancel_editing_table";
22
                formatString = "Can�t cancel editing the table: %(table) ";
23
        }
24

    
25
}