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

org.mailster.smtp.core.TooMuchDataException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy