package se.chalmers.dat255.grupp12; /** * Created with IntelliJ IDEA. * User: Johan * Date: 2013-09-28 * Time: 14:54 * To change this template use File | Settings | File Templates. */ public class DataNotFoundException extends Exception { public DataNotFoundException() { super(); } public DataNotFoundException(Class cls) { super(cls.getName()); } }