package at.gv.egovernment.moa.spss.server.config;

import at.gv.egovernment.moa.spss.MOASystemException;

/**
 * Exception signalling an error in the configuration.
 * 
 * @author Patrick Peck
 * @version $Id$
 */
public class ConfigurationException extends MOASystemException {

  /**
   * Create a <code>ConfigurationException</code>.
   * 
   * @see at.gv.egovernment.moa.spss.server.MOAException#MOAException(String, Object[])
   */
  public ConfigurationException(String messageId, Object[] parameters) {
    super(messageId, parameters);
  }

  /**
   * Create a <code>ConfigurationException</code>.
   * @see at.gv.egovernment.moa.spss.server.MOAException#MOAException(String, Object[], Throwable)
   */
  public ConfigurationException(
    String messageId,
    Object[] parameters,
    Throwable wrapped) {

    super(messageId, parameters, wrapped);
  }

}