com.darwinsys.mail.MailException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
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);
}
}