
package evolution;

/**
 * This exception is thrown when the human's energybuffer becomes empty.
 */

public class EmptyEnergyBufferException extends Exception {
     /**
     * Create new EmptyEnergyBufferException.
     */
    public EmptyEnergyBufferException() { }

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