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