package spiel;

/**
 * jetzt Klasse als final deklariert
 * @version 1.1
 */

public final class WurmAutokarambolageException extends RuntimeException {

    /** Default-Konstruktor */
    public WurmAutokarambolageException() {}

    /** üblicher Konstruktor
     * @param nachricht die auszugebende Meldung
     */
    public WurmAutokarambolageException(String nachricht) {
	
	super(nachricht);    
    }
}
