Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libTools / src / org / gvsig / tools / exception / IExceptionTranslator.java @ 23150

History | View | Annotate | Download (336 Bytes)

1
package org.gvsig.tools.exception;
2

    
3
/**
4
 * 
5
 * @author Equipo de desarrollo de gvSIG
6
 *
7
 */
8
public interface IExceptionTranslator {
9
        
10
        /** 
11
         *  @param key The key of the message error.
12
         *  @return The translated error message
13
         *  corresponding to the key that it
14
         *  obtains as parameter.
15
         */
16
        public String getText(String key);
17
}