01: /*
02: * ExecEmptyErr.java --
03: *
04: * jacl/tests/exec/ExecEmptyErr.java
05: *
06: * Copyright (c) 1998 by Moses DeJong
07: *
08: * See the file "license.terms" for information on usage and redistribution
09: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
10: *
11: * RCS: @(#) $Id: ExecEmptyErr.java,v 1.1 1999/05/10 04:09:03 dejong Exp $
12: *
13: */
14:
15: package tests.exec;
16:
17: public class ExecEmptyErr {
18: public static void main(String[] argv) {
19: System.exit(-1);
20: }
21: }
|