WIZARD_PR2_DOP/Domain/Exceptions/SpielNotFoundException.java

17 lines
277 B
Java
Raw Normal View History

2023-11-07 15:48:15 +01:00
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);
}
}