com.icegreen.greenmail.mail.MailException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greenmail Show documentation
Show all versions of greenmail Show documentation
GreenMail - Email Test Servers
/*
* Copyright (c) 2014 Wael Chatila / Icegreen Technologies. All Rights Reserved.
* This software is released under the Apache license 2.0
* This file has been used and modified.
* Original file can be found on http://foedus.sourceforge.net
*/
package com.icegreen.greenmail.mail;
public class MailException extends Exception {
static final long serialVersionUID = 7582669663443148456L;
public MailException() {
super();
}
public MailException(String s) {
super(s);
}
public MailException(String s, Throwable t) {
super(s, t);
}
public MailException(Throwable t) {
super(t);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy