001 /* 002 // $Id: //open/mondrian/src/main/mondrian/olap/NativeEvaluationUnsupportedException.java#2 $ 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) 2007-2007 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.olap; 011 012 /** 013 * Exception which indicates that native evaluation of a function 014 * was enabled but not supported, and 015 * {@link MondrianProperties#AlertNativeEvaluationUnsupported} was 016 * set to <code>ERROR</code>. 017 * 018 * @author John Sichi 019 * @version $Id: //open/mondrian/src/main/mondrian/olap/NativeEvaluationUnsupportedException.java#2 $ 020 */ 021 public class NativeEvaluationUnsupportedException 022 extends ResultLimitExceededException { 023 024 /** 025 * Creates a NativeEvaluationUnsupportedException. 026 * 027 * @param message Localized error message 028 */ 029 public NativeEvaluationUnsupportedException(String message) { 030 super(message); 031 } 032 } 033 034 // End NativeEvaluationUnsupportedException.java