001/*
002// This software is subject to the terms of the Eclipse Public License v1.0
003// Agreement, available at the following URL:
004// http://www.eclipse.org/legal/epl-v10.html.
005// You must accept the terms of that agreement to use this software.
006//
007// Copyright (C) 2005-2005 Julian Hyde
008// Copyright (C) 2005-2006 Pentaho and others
009// All Rights Reserved.
010*/
011package mondrian.recorder;
012
013import mondrian.olap.MondrianException;
014
015/**
016 * Exception thrown by {@link MessageRecorder} when too many errors
017 * have been reported.
018 *
019 * @author Richard M. Emberson
020 */
021public final class RecorderException extends MondrianException {
022     protected RecorderException(String msg) {
023        super(msg);
024    }
025}
026
027// End RecorderException.java