Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libExceptions / src / org / gvsig / exceptions / IExceptionTranslator.java @ 23150

History | View | Annotate | Download (395 Bytes)

1
package org.gvsig.exceptions;
2

    
3
/**
4
 * 
5
 * @author Equipo de desarrollo de gvSIG
6
 * @deprecated @see org.gvsig.tools.exception.IExceptionTranslator
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
}