package org.subethamail.smtp.server; /** * @author Ian McFarland <ian@neo.com> */ @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); } }