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

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

There is a newer version: 3.1.7
Show newest version
/*
 * $Id: TooMuchDataException.java 337 2009-06-29 19:20:58Z latchkey $
 * $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 class TooMuchDataException extends IOException
{
	/** */
	public TooMuchDataException()
	{
		super();
	}

	/** */
	public TooMuchDataException(String message)
	{
		super(message);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy