001package fr.aumgn.dac2.exceptions;
002
003import fr.aumgn.bukkitutils.command.exception.CommandException;
004
005public abstract class DACException extends RuntimeException
006    implements CommandException {
007
008    private static final long serialVersionUID = -5753888313045179326L;
009
010    public DACException(String message) {
011        super(message);
012    }
013}