001package fr.aumgn.dac2.exceptions;
002
003/**
004 * Thrown when the removal of an arenas .json file failed.
005 */
006public class ArenaDeleteException extends DACException {
007
008    private static final long serialVersionUID = -9213183276562854593L;
009
010    public ArenaDeleteException(String message) {
011        super(message);
012    }
013}