001package fr.aumgn.dac2.exceptions;
002
003/**
004 * Thrown when trying to access with the safeGet* arena getters
005 * an undefined component.
006 * (either the pool, the start region, the diving or the surrounding region).
007 */
008public class ArenaComponentUndefined extends DACException {
009
010    private static final long serialVersionUID = 1529213051137532423L;
011
012    public ArenaComponentUndefined(String message) {
013        super(message);
014    }
015}