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

org.subethamail.smtp.RejectException Maven / Gradle / Ivy

There is a newer version: 3.1.7
Show newest version
/*
 * $Id: RejectException.java 337 2009-06-29 19:20:58Z latchkey $
 * $Source: /cvsroot/Similarity4/src/java/com/similarity/mbean/BindStatisticsManagerMBean.java,v $
 */
package org.subethamail.smtp;

/**
 * Thrown to reject an SMTP command with a specific code.
 *
 * @author Jeff Schnitzer
 */
@SuppressWarnings("serial")
public class RejectException extends Exception
{
	int code;

	/** */
	public RejectException()
	{
		this("Transaction failed");
	}

	/** */
	public RejectException(String message)
	{
		this(554, message);
	}

	/** */
	public RejectException(int code, String message)
	{
		super(code + " " + message);

		this.code = code;
	}

	/** */
	public int getCode()
	{
		return this.code;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy