package at.gv.egovernment.moa.spss;
/**
 * Base class of technical MOA exceptions.
 * 
 * Technical exceptions are exceptions that originate from system failure (e.g.,
 * a database connection fails, a component is not available, etc.)
 * 
 * @author Patrick Peck
 * @version $Id$
 */
public class MOASystemException extends MOAException {
  /**
   * Create a new MOASystemException.
   * 
   * @param messageId The identifier of the message associated with this 
   * exception.
   * @param parameters Additional message parameters.
   */
  public MOASystemException(String messageId, Object[] parameters) {
    super(messageId, parameters);
  }
  /**
   * Create a new MOASystemException.
   * 
   * @param messageId The identifier of the message associated with this 
   * MOASystemException.
   * @param parameters Additional message parameters.
   * @param wrapped The exception wrapped by this
   * MOASystemException.
   */
  public MOASystemException(
    String messageId,
    Object[] parameters,
    Throwable wrapped) {
    super(messageId, parameters, wrapped);
  }
}