net.yadaframework.exceptions.YadaEmailException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yadaweb Show documentation
Show all versions of yadaweb Show documentation
Some useful tasks for the Yada Framework
package net.yadaframework.exceptions;
/**
* Runtime exception that wraps email checked exceptions.
* Used when <email throwExceptions="true">
*/
public class YadaEmailException extends RuntimeException {
private static final long serialVersionUID = -1L;
public YadaEmailException() {
}
public YadaEmailException(Exception e) {
super(e);
}
}