org.mailster.smtp.core.TooMuchDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailster-smtp Show documentation
Show all versions of mailster-smtp Show documentation
A NIO SMTP server API written in Java
package org.mailster.smtp.core;
import java.io.IOException;
/**
* Thrown by message listeners if an input stream provides more data than the
* listener can handle.
*
* @author De Oliveira Edouard <[email protected]>
* @author Jeff Schnitzer
*/
public class TooMuchDataException extends IOException {
private static final long serialVersionUID = -8591524533167917902L;
public TooMuchDataException() {
super();
}
public TooMuchDataException(String message) {
super(message);
}
}