package Domain.Exceptions; public class SpielNotFoundException extends SpielException { public SpielNotFoundException() { super(); } public SpielNotFoundException(String e) { super(20, e); } public SpielNotFoundException(int id, String e) { super(id, e); } }