WIZARD_PR2_DOP/Domain/Exceptions/KartenNichtGemischtExceptio...

9 lines
166 B
Java
Raw Normal View History

2023-11-07 15:48:15 +01:00
package Domain.Exceptions;
public class KartenNichtGemischtException extends SpielException {
public KartenNichtGemischtException(String e) {
super(30, e);
}
}