forked from pentaho/mondrian
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[git-p4: depot-paths = "//open/mondrian/": change = 797]
- Loading branch information
1 parent
fc72207
commit be5966c
Showing
2 changed files
with
48 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
// $Id$ | ||
// This software is subject to the terms of the Common Public License | ||
// Agreement, available at the following URL: | ||
// http://www.opensource.org/licenses/cpl.html. | ||
// (C) Copyright 2001-2003 Kana Software, Inc. and others. | ||
// All Rights Reserved. | ||
// You must accept the terms of that agreement to use this software. | ||
*/ | ||
package mondrian.resource; | ||
|
||
/** | ||
* @deprecated use {@link RuntimeException} | ||
**/ | ||
public class ChainableRuntimeException extends RuntimeException { | ||
public ChainableRuntimeException(String message) { | ||
super(message); | ||
} | ||
|
||
public ChainableRuntimeException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public ChainableRuntimeException(Throwable cause) { | ||
super(cause); | ||
} | ||
} | ||
|
||
// End ChainableRuntimeException.java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters