package model.data.exceptions; import main.error.VideothekException; /** * DataException.java * @author Christopher Bertels (chbertel@uos.de) * @date 10.09.2008 * * Oberklasser aller Exceptions im data Package. */ public class DataException extends VideothekException { private static final long serialVersionUID = 9142676993623774244L; /** * Konstruktor für DataException. * * @param msg * Fehlernachricht. */ public DataException(String msg) { super(msg); } }