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

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

Go to download

A fork of a fork (!) of SubEtha, an easy-to-use server-side SMTP library for Java.

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