
org.subethamail.smtp.DropConnectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subethasmtp Show documentation
Show all versions of subethasmtp Show documentation
A fork of a fork (!) of SubEtha, an easy-to-use server-side SMTP library for Java.
/*
* $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;
/**
* A type of RejectException that additionally causes the server to close
* the connection to the client.
*
* @author Jeff Schnitzer
*/
@SuppressWarnings("serial")
public final class DropConnectionException extends RejectException
{
int code;
public DropConnectionException()
{
super();
}
public DropConnectionException(String message)
{
super(message);
}
public DropConnectionException(int code, String message)
{
super(code, message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy