33 lines
698 B
Plaintext
Executable File
33 lines
698 B
Plaintext
Executable File
package com.fp.general.mail.exception;
|
|
|
|
/**
|
|
* Excepcion que manejará los errores en la creación y envío de correos
|
|
*
|
|
* @author dcruz
|
|
*
|
|
*/
|
|
public class EnvioMailException extends Exception {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public EnvioMailException() {
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public EnvioMailException(String message) {
|
|
super(message);
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public EnvioMailException(Throwable cause) {
|
|
super(cause);
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public EnvioMailException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
}
|