rvl.swv
Class Err

java.lang.Object
  extended by rvl.swv.Err

public class Err
extends java.lang.Object

This class defines return codes for various error conditions. StatWeave-related classes should use these so that there is some consistency in interpretation of exit codes.


Field Summary
static int CHILDERR
          Child process error
static int CHILDINT
          Child process interrupted
static int FILENF
          File not found
static int IOERR
          Other I/O error
static int NOBIN
          Can't find binary
static int NOKEY
          Required configuration key not found
static int REFLECT
          Error in instantiating a needed class
static int SRCERR
          Error in source file
static int SYSERR
          System error -- something is wrong with the code itself
 
Constructor Summary
Err()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FILENF

public static final int FILENF
File not found

See Also:
Constant Field Values

IOERR

public static final int IOERR
Other I/O error

See Also:
Constant Field Values

SRCERR

public static final int SRCERR
Error in source file

See Also:
Constant Field Values

NOKEY

public static final int NOKEY
Required configuration key not found

See Also:
Constant Field Values

REFLECT

public static final int REFLECT
Error in instantiating a needed class

See Also:
Constant Field Values

NOBIN

public static final int NOBIN
Can't find binary

See Also:
Constant Field Values

CHILDINT

public static final int CHILDINT
Child process interrupted

See Also:
Constant Field Values

CHILDERR

public static final int CHILDERR
Child process error

See Also:
Constant Field Values

SYSERR

public static final int SYSERR
System error -- something is wrong with the code itself

See Also:
Constant Field Values
Constructor Detail

Err

public Err()