
org.subethamail.smtp.internal.server.InvalidCommandNameException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subethasmtp Show documentation
Show all versions of subethasmtp Show documentation
A fork of a fork (!) of SubEtha, an easy-to-use server-side SMTP library for Java.
package org.subethamail.smtp.internal.server;
/**
* @author Ian McFarland <[email protected]>
*/
@SuppressWarnings("serial")
public final 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