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) 2007-2009 Pentaho and others
008// All Rights Reserved.
009*/
010package 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 */
020public class NativeEvaluationUnsupportedException
021    extends ResultLimitExceededException
022{
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