MailerException.java :  » Scripting » tinyappserver » cn » aprilsoft » mail » Java Open Source

Java Open Source » Scripting » tinyappserver 
tinyappserver » cn » aprilsoft » mail » MailerException.java
package cn.aprilsoft.mail;

public class MailerException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public MailerException() {
        super();
    }

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

    public MailerException(String message, Throwable cause) {
        super(message, cause);
    }

    public MailerException(Throwable cause) {
        super(cause);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.