KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > recorder > RecorderException


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/recorder/RecorderException.java#4 $
3 // This software is subject to the terms of the Common Public License
4 // Agreement, available at the following URL:
5 // http://www.opensource.org/licenses/cpl.html.
6 // Copyright (C) 2005-2006 Julian Hyde and others.
7 // All Rights Reserved.
8 // You must accept the terms of that agreement to use this software.
9 */

10 package mondrian.recorder;
11
12 import mondrian.olap.MondrianException;
13
14 /**
15  * Exception thrown by {@link MessageRecorder} when too many errors
16  * have been reported.
17  *
18  * @author Richard M. Emberson
19  * @version $Id: //open/mondrian/src/main/mondrian/recorder/RecorderException.java#4 $
20  */

21 public final class RecorderException extends MondrianException {
22      protected RecorderException(String JavaDoc msg) {
23         super(msg);
24     }
25 }
26
27 // End RecorderException.java
28
Popular Tags