001package fr.aumgn.dac2.exceptions;
002
003import fr.aumgn.bukkitutils.localization.PluginMessages;
004
005/**
006 * Thrown when trying to start a new stage for an arena which already has one.
007 */
008public class StageAlreadyRunning extends DACException {
009
010    private static final long serialVersionUID = -403011438737982028L;
011
012    public StageAlreadyRunning(PluginMessages messages) {
013        super(messages.get("stage.alreadyrunning"));
014    }
015}