forked from 2211945/WIZARD_PR2_DOP
16 lines
419 B
Java
16 lines
419 B
Java
|
/*
|
||
|
============================================================
|
||
|
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);
|
||
|
}
|
||
|
|
||
|
}
|