001package fr.aumgn.dac2.exceptions;
002
003/**
004 * Thrown when the creation of the root directory
005 * of all .json arenas files failed.
006 */
007public class ArenasFolderException extends DACException {
008
009    private static final long serialVersionUID = -5787336206129989817L;
010
011    public ArenasFolderException(String message) {
012        super(message);
013    }
014}