/* Generated by Together */ package evolution.actions; /** * Class of IllegalLandTypeExceptions. * This exception will be thrown when an action is not allowed to be performed on a * square of land. */ public class IllegalLandTypeException extends Exception { /** * Create new IllegaLandTypeException. */ public IllegalLandTypeException() { } /** * Create new IllegalLandTypeException with given message. */ public IllegalLandTypeException(String msg) { super(msg); } }