os
Class OSProcessExecProcess

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--os.OSProcessExecProcess

public class OSProcessExecProcess
extends java.lang.Exception

Thrown when a process wants to exec another process and replace the current process that is running.

Version:
1.0
Author:
Thaddeus O. Cooper (cooper@tweenproject.org)
See Also:
Serialized Form

Constructor Summary
OSProcessExecProcess()
          Create an empty exception.
OSProcessExecProcess(java.lang.String s)
          Create an exception and specify what process should be execed.
 
Method Summary
 java.lang.String getProcessToExec()
          Gets the name of the process to be execed.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OSProcessExecProcess

public OSProcessExecProcess()
Create an empty exception.

OSProcessExecProcess

public OSProcessExecProcess(java.lang.String s)
Create an exception and specify what process should be execed.
Parameters:
s - the name of the process to be execed.
Method Detail

getProcessToExec

public java.lang.String getProcessToExec()
Gets the name of the process to be execed.
Returns:
the name of the process to be execed.