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

com.icegreen.greenmail.mail.MailException Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
/*
 * 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