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

org.subethamail.smtp.server.UnknownCommandException Maven / Gradle / Ivy

There is a newer version: 3.1.7
Show newest version
package org.subethamail.smtp.server;

/**
 * @author Ian McFarland <[email protected]>
 */
@SuppressWarnings("serial")
public class UnknownCommandException extends CommandException
{
	/** */
	public UnknownCommandException()
	{
		super();
	}

	/** */
	public UnknownCommandException(String string)
	{
		super(string);
	}

	/** */
	public UnknownCommandException(String string, Throwable throwable)
	{
		super(string, throwable);
	}

	/** */
	public UnknownCommandException(Throwable throwable)
	{
		super(throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy