2014-05-19 11:58:45 +00:00
|
|
|
package org.keycloak.email;
|
2013-12-07 11:00:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a>
|
|
|
|
*/
|
|
|
|
public class EmailException extends Exception {
|
|
|
|
|
|
|
|
public EmailException(Throwable cause) {
|
|
|
|
super(cause);
|
|
|
|
}
|
|
|
|
|
2014-05-19 11:58:45 +00:00
|
|
|
public EmailException(String message, Throwable cause) {
|
|
|
|
super(message, cause);
|
|
|
|
}
|
2013-12-07 11:00:45 +00:00
|
|
|
}
|