1 /* 2 * Replica is published under the terms 3 * of the Apache Software License. 4 */ 5 package replica.command; 6 7 8 /*** 9 * Thown when a command is not found for a given action. 10 * 11 * <note>This is generally a non fatal exception, so it is modelled as a checked Exception.</note> 12 * 13 * @author Pedro Costa 14 * @author Helder Silva 15 * @since 17/Jan/2004 16 */ 17 public class NoSuchCommandException extends CommandException { 18 19 /*** 20 * @param message 21 */ 22 public NoSuchCommandException(String message) { 23 super(message); 24 } 25 26 /*** 27 * @param cause 28 */ 29 public NoSuchCommandException(Throwable cause) { 30 super(cause); 31 } 32 33 /*** 34 * @param message 35 * @param cause 36 */ 37 public NoSuchCommandException(String message, Throwable cause) { 38 super(message, cause); 39 } 40 41 /*** 42 * @param message 43 * @param actionId 44 */ 45 public NoSuchCommandException(String message, String actionId) { 46 super(message, actionId); 47 } 48 49 /*** 50 * @param message 51 * @param actionId 52 * @param cause 53 */ 54 public NoSuchCommandException( 55 String message, 56 String actionId, 57 Throwable cause) { 58 super(message, actionId, cause); 59 } 60 61 /*** 62 * Default constructor. 63 */ 64 public NoSuchCommandException() { 65 super(); 66 } 67 68 }

This page was automatically generated by Maven