KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > util > CreationException


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/util/CreationException.java#3 $
3 // This software is subject to the terms of the Common Public License
4 // Agreement, available at the following URL:
5 // http://www.opensource.org/licenses/cpl.html.
6 // Copyright (C) 2007-2007 Julian Hyde and others
7 // All Rights Reserved.
8 // You must accept the terms of that agreement to use this software.
9 */

10 package mondrian.util;
11
12 import mondrian.olap.MondrianException;
13
14 public class CreationException extends MondrianException {
15     public CreationException() {
16         super();
17     }
18     public CreationException(String JavaDoc s) {
19         super(s);
20     }
21     public CreationException(String JavaDoc s, Throwable JavaDoc t) {
22         super(s, t);
23     }
24     public CreationException(Throwable JavaDoc t) {
25         super(t);
26     }
27 }
28
29
30 // End CreationException.java
31
Popular Tags