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-2007 Pentaho and others
008// All Rights Reserved.
009*/
010package mondrian.util;
011
012import mondrian.olap.MondrianException;
013
014public class CreationException extends MondrianException {
015    public CreationException() {
016        super();
017    }
018    public CreationException(String s) {
019        super(s);
020    }
021    public CreationException(String s, Throwable t) {
022        super(s, t);
023    }
024    public CreationException(Throwable t) {
025        super(t);
026    }
027}
028
029
030// End CreationException.java