/* CVS: $Id: NoSuchLandResourceException.java,v 1.2 2001/03/18 19:16:33 gvijf Exp $ */ package evolution.lands; /** * A class of NoSuchResourcesExceptions. * This exception is thrown when there is a shortage of resources. */ public class NoSuchLandResourceException extends Exception { /** * Create new NoSuchResourceException. */ public NoSuchLandResourceException() { } /** * Create new NoSuchResourceException with given message. */ public NoSuchLandResourceException(String msg) { super(msg); } }