1 package nl.toolforge.karma.cli;
2
3 /***
4 * Thrown when <code>CLI</code> users have not yet set the working context for their environment.
5 *
6 * @author D.A. Smedes
7 * @version $Id: NoWorkingContextException.java,v 1.1 2004/09/15 20:57:21 asmedes Exp $
8 */
9 public class NoWorkingContextException extends Exception {
10
11 public NoWorkingContextException(String message) {
12 super(message);
13 }
14 }