01: package sisc.nativefun;
02:
03: public class PrimRuntimeException extends RuntimeException {
04:
05: public PrimRuntimeException(String message) {
06: super (message);
07: }
08:
09: public PrimRuntimeException() {
10: }
11: }
12:
13: /*
14: * The contents of this file are subject to the Mozilla Public
15: * License Version 1.1 (the "License"); you may not use this file
16: * except in compliance with the License. You may obtain a copy of
17: * the License at http://www.mozilla.org/MPL/
18: *
19: * Software distributed under the License is distributed on an "AS
20: * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
21: * implied. See the License for the specific language governing
22: * rights and limitations under the License.
23: *
24: * The Original Code is the Second Interpreter of Scheme Code (SISC).
25: *
26: * The Initial Developer of the Original Code is Scott G. Miller.
27: * Portions created by Scott G. Miller are Copyright (C) 2000-2007
28: * Scott G. Miller. All Rights Reserved.
29: *
30: * Contributor(s):
31: * Matthias Radestock
32: *
33: * Alternatively, the contents of this file may be used under the
34: * terms of the GNU General Public License Version 2 or later (the
35: * "GPL"), in which case the provisions of the GPL are applicable
36: * instead of those above. If you wish to allow use of your
37: * version of this file only under the terms of the GPL and not to
38: * allow others to use your version of this file under the MPL,
39: * indicate your decision by deleting the provisions above and
40: * replace them with the notice and other provisions required by
41: * the GPL. If you do not delete the provisions above, a recipient
42: * may use your version of this file under either the MPL or the
43: * GPL.
44: */
|