
org.subethamail.smtp.server.InvalidCommandNameException Maven / Gradle / Ivy
package org.subethamail.smtp.server;
/**
* @author Ian McFarland <[email protected]>
*/
@SuppressWarnings("serial")
public class InvalidCommandNameException extends CommandException
{
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 - 2025 Weber Informatics LLC | Privacy Policy