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

com.darwinsys.mail.MailException Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.darwinsys.mail;

/** Checked Exception for Mail Failures (so rest of code does not
 * need to import javax.mail).
 */
public class MailException extends RuntimeException {

	private static final long serialVersionUID = 3979271360864661817L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy