001package fr.aumgn.dac2.exceptions;
002
003import fr.aumgn.dac2.DAC;
004
005/**
006 * Thrown when trying to get a game type which is not known by the plugin.
007 */
008public class UnknownGameType extends DACException {
009
010    private static final long serialVersionUID = 2000243296652979093L;
011
012    public UnknownGameType(DAC dac, String type) {
013        super(dac.getMessages().get("game.type.unknown", type));
014    }
015}