1 package ch.odi.justblog.command; 2 3 /*** 4 * Signals that a command failed to execute. 5 * 6 * @author oglueck 7 */ 8 public class CommandException extends Exception { 9 10 /*** 11 * @param arg0 12 */ 13 public CommandException(String arg0) { 14 super(arg0); 15 } 16 17 /*** 18 * @param arg0 19 */ 20 public CommandException(Throwable arg0) { 21 super(arg0.getMessage(), arg0); 22 } 23 24 /*** 25 * @param arg0 26 * @param arg1 27 */ 28 public CommandException(String arg0, Throwable arg1) { 29 super(arg0, arg1); 30 } 31 32 }