/*
 * $Id: ContractViolation.java,v 1.1 2005/06/24 13:56:07 boehm Exp $
 *
 * Copyright (c) 2001-2003 Oliver Boehm (mailto:boehm@2xp.de)
 * http://www.ba-stuttgart.de/~boehm
 * All rights reserved.
 *
 * -----------------------------------------
 *
 * $Author: boehm $
 * $Date: 2005/06/24 13:56:07 $
 * $Revision: 1.1 $
 *
 * $Log: ContractViolation.java,v $
 * Revision 1.1  2005/06/24 13:56:07  boehm
 * Einspielen der Beispiele und Uebungen inkl. HTML-Seiten
 *
 */



package bio.q;



/**
 * Class ContractViolation
 * is thrown when a Contract is broken.
 *
 * @author $Author: boehm $
 * @version $Revision: 1.1 $ $Date: 2005/06/24 13:56:07 $
 * @see Contract
 */

public class ContractViolation extends RuntimeException {



    /**
     * Constructor
     */

    public ContractViolation(String message) {
        super("Vertragsverletzung: " + message);
    }

}
