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) 2005-2005 Julian Hyde 008// Copyright (C) 2005-2007 Pentaho and others 009// All Rights Reserved. 010*/ 011package mondrian.olap; 012 013/** 014 * Exception which indicates that an argument is invalid 015 * 016 * @author Thiyagu 017 * @since April 5, 2007 018 */ 019public class InvalidArgumentException extends MondrianException { 020 /** 021 * Creates a InvalidArgumentException. 022 * 023 * @param message Localized error message 024 */ 025 public InvalidArgumentException(String message) { 026 super(message); 027 } 028} 029 030// End InvalidArgumentException.java