All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.yadaframework.exceptions.YadaEmailException Maven / Gradle / Ivy

There is a newer version: 0.7.7.R4
Show newest version
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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy