/* CVS: $Id: NoHumanSelectionException.java,v 1.2 2001/01/12 10:34:02 gvijf Exp $ */

package evolution;

/**
 * Thrown when the human selection is empty and world needs
 * to pop a human from the selection.
 */
public class NoHumanSelectionException extends Exception {

    /**
     * Create new NoHumanSelectionException with the given message.
     */
    public NoHumanSelectionException(String msg) {
        super(msg);
    }

}
