View Javadoc

1   package nl.toolforge.karma.core.boot;
2   
3   /***
4    * @author D.A. Smedes
5    * @version $Id: WorkingContextException.java,v 1.1 2004/11/02 22:26:43 asmedes Exp $
6    */
7   public class WorkingContextException extends Exception {
8   
9     public WorkingContextException(String message) {
10      super(message);
11    }
12  
13    public WorkingContextException(Throwable cause) {
14      super(cause);
15    }
16  
17    public WorkingContextException(String message, Throwable cause) {
18      super(message, cause);
19    }
20  }