You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
664 B
25 lines
664 B
package mock.exceptions;
|
|
|
|
/**
|
|
* An exception thrown when we cannot create a command for some reasn (e.g., uknown action type).
|
|
*/
|
|
public class CommandConstructionException extends Exception {
|
|
|
|
/**
|
|
* Constructs the exception with a given message.
|
|
* @param message Message to store.
|
|
*/
|
|
public CommandConstructionException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
/**
|
|
* Constructs the exception with a given message and cause.
|
|
* @param message Message to store.
|
|
* @param cause Cause to store.
|
|
*/
|
|
public CommandConstructionException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|