/*
 * SendHtmlMainException.java
 *
 * Created on 22 de Fevereiro de 2002, 00:10
 */

package lenApp;

/**
 *
 * @author  oribeiro
 * @version 
 */
public class SendHtmlMailException extends java.lang.Exception
{

    protected String motivo = null;
    
    /** Creates new SendHtmlMainException */
    public SendHtmlMailException() 
    {
    }
    
    public SendHtmlMailException(String pMotivo)
    {
        motivo = pMotivo;
    }
    
    public String getMessage()
    {
        return motivo;
    }
    
    public String getLocalizeMessage()
    {
        return getMessage();
    }
    
    public String toString()
    {
        return getMessage();
    }

}
