Artifact [e2997e794b]
Not logged in

Artifact e2997e794b38be847f33c2c643b5700f52c640ce:


/* 
 * RuntimeExceptionCmd.java --
 *
 *      Raise a RuntimeException in a Java command proc.
 *
 * Copyright (c) 2002 by Mo DeJong
 *
 * See the file "license.terms" for information on usage and redistribution
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 *
 * RCS: @(#) $Id: RuntimeExceptionCmd.java,v 1.1 2002/12/30 22:49:24 mdejong Exp $
 */

package tests;

import tcl.lang.*;

public class RuntimeExceptionCmd implements Command {
    public void 
    cmdProc(
	Interp interp,
	TclObject[] objv)
    throws TclException
    {
        throw new NullPointerException("RuntimeExceptionCmd");
    }
}