001    /*
002    // This software is subject to the terms of the Common Public License
003    // Agreement, available at the following URL:
004    // http://www.opensource.org/licenses/cpl.html.
005    // Copyright (C) 2005-2007 Julian Hyde and others
006    // All Rights Reserved.
007    // You must accept the terms of that agreement to use this software.
008    */
009    package mondrian.olap;
010    
011    /**
012     * Exception which indicates that an argument is invalid
013     *
014     * @author Thiyagu
015     * @since April 5, 2007
016     * @version $Id: //open/mondrian/src/main/mondrian/olap/InvalidArgumentException.java#1 $
017     */
018    public class InvalidArgumentException extends MondrianException {
019        /**
020         * Creates a InvalidArgumentException.
021         *
022         * @param message Localized error message
023         */
024        public InvalidArgumentException(String message) {
025            super(message);
026        }
027    }
028    
029    // End InvalidArgumentException.java