package evolution; /** * Thrown when the creation power is to low to create another human. */ public class CreationPowerInsufficientException extends Exception { /** * Create new CreationPowerInsufficientException with the given message. */ public CreationPowerInsufficientException(String msg) { super(msg); } }