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

org.subethamail.smtp.internal.server.CommandException Maven / Gradle / Ivy

Go to download

A fork of a fork (!) of SubEtha, an easy-to-use server-side SMTP library for Java.

There is a newer version: 7.1.3
Show newest version
package org.subethamail.smtp.internal.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);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy