package at.gv.egovernment.moa.id.config; import at.gv.egovernment.moa.id.MOAIDException; /** * Exception signalling an error in the configuration. * * @author Patrick Peck * @version $Id$ */ public class ConfigurationException extends MOAIDException { /** * Create a MOAConfigurationException. */ public ConfigurationException(String messageId, Object[] parameters) { super(messageId, parameters); } /** * Create a MOAConfigurationException. */ public ConfigurationException( String messageId, Object[] parameters, Throwable wrapped) { super(messageId, parameters, wrapped); } }