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

org.mailster.smtp.core.commands.InvalidCommandNameException Maven / Gradle / Ivy

package org.mailster.smtp.core.commands;

/**
 * @author De Oliveira Edouard <[email protected]>
 * @author Ian McFarland <[email protected]>
 */
public class InvalidCommandNameException extends CommandException {

    private static final long serialVersionUID = 8650069874808249416L;

    public InvalidCommandNameException() {
        super();
    }

    public InvalidCommandNameException(String string) {
        super(string);
    }

    public InvalidCommandNameException(String string, Throwable throwable) {
        super(string, throwable);
    }

    public InvalidCommandNameException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy