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

jodd.mail.MailException Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.

package jodd.mail;

import jodd.exception.UncheckedException;

/**
 * Mailing exception.
 */
public class MailException extends UncheckedException {

	public MailException(String message) {
		super(message);
	}

	public MailException(String message, Throwable t) {
		super(message, t);
	}

	public MailException(Throwable t) {
		super(t);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy