001 /* 002 // $Id: //open/mondrian/src/main/mondrian/util/CreationException.java#3 $ 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.util; 011 012 import mondrian.olap.MondrianException; 013 014 public 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