
org.subethamail.smtp.TooMuchDataException 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$
* $Source: /cvsroot/Similarity4/src/java/com/similarity/mbean/BindStatisticsManagerMBean.java,v $
*/
package org.subethamail.smtp;
import java.io.IOException;
/**
* Thrown by message listeners if an input stream provides more data than the
* listener can handle.
*
* @author Jeff Schnitzer
*/
@SuppressWarnings("serial")
public final class TooMuchDataException extends IOException
{
public TooMuchDataException()
{
super();
}
public TooMuchDataException(String message)
{
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy