| JSTKException.java |
1 /*
2 * @(#) $Id: JSTKException.java,v 1.2 2003/07/08 08:13:52 pankaj Exp $
3 *
4 * Copyright (c) 2002-03 by Pankaj Kumar (http://www.pankaj-k.net).
5 * All rights reserved.
6 *
7 * The license governing the use of this file can be found in the
8 * root directory of the containing software.
9 */
10package org.jstk;
11
12public class JSTKException extends Exception {
13 public JSTKException(){
14 super();
15 }
16 public JSTKException(String message){
17 super(message);
18 }
19 public JSTKException(String message, Throwable cause){
20 super(message, cause);
21 }
22 public JSTKException(Throwable cause){
23 super(cause);
24 }
25}