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