org.subethamail.smtp.server.CommandException 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
SubEtha SMTP is an easy-to-use server-side SMTP library for Java.
package org.subethamail.smtp.server;
/**
* @author Ian McFarland <[email protected]>
*/
@SuppressWarnings("serial")
public class CommandException extends Exception
{
/** */
public CommandException(String string, Throwable throwable)
{
super(string, throwable);
}
/** */
public CommandException(String string)
{
super(string);
}
/** */
public CommandException()
{
super();
}
/** */
public CommandException(Throwable throwable)
{
super(throwable);
}
}