KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > olap > NativeEvaluationUnsupportedException


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/olap/NativeEvaluationUnsupportedException.java#2 $
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) 2007-2007 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.olap;
11
12 /**
13  * Exception which indicates that native evaluation of a function
14  * was enabled but not supported, and
15  * {@link MondrianProperties#AlertNativeEvaluationUnsupported} was
16  * set to <code>ERROR</code>.
17  *
18  * @author John Sichi
19  * @version $Id: //open/mondrian/src/main/mondrian/olap/NativeEvaluationUnsupportedException.java#2 $
20  */

21 public class NativeEvaluationUnsupportedException
22     extends ResultLimitExceededException {
23
24     /**
25      * Creates a NativeEvaluationUnsupportedException.
26      *
27      * @param message Localized error message
28      */

29     public NativeEvaluationUnsupportedException(String JavaDoc message) {
30         super(message);
31     }
32 }
33
34 // End NativeEvaluationUnsupportedException.java
35
Popular Tags