/* ============================================================ 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); } }