20 lines
525 B
Plaintext
Executable File
20 lines
525 B
Plaintext
Executable File
package com.fp.common.exception;
|
|
|
|
/**
|
|
* Clase encargada de entregar la descripcion de un mensaje aplicativo.
|
|
*
|
|
* @author Jorge Vaca
|
|
* @version 2.1
|
|
*/
|
|
public abstract class AbstractExceptionMessage {
|
|
|
|
/**
|
|
* Entrega la descripcion de un mensaje aplicativo.
|
|
*
|
|
* @param aplicationcode Codigo de mensaje.
|
|
* @param language Idioma asociado al lenguaje.
|
|
* @return String
|
|
*/
|
|
public abstract String getMessage(String aplicationcode, String language) throws Exception;
|
|
}
|