WIZARD_PR2_DOP/Domain/Exceptions/SpielerNotFoundException.java

16 lines
419 B
Java
Raw Permalink Normal View History

/*
============================================================
This is the "SpielerNotFoundException" file from Author: Philipp Kotte
written on: 16 / 10 / 2023 at: 07:50
============================================================
*/
package Domain.Exceptions;
public class SpielerNotFoundException extends SpielException {
public SpielerNotFoundException(String message) {
super(1, message);
}
}