com.ptc.windchill.upgrade.modeldiff
Class AddConstraints.ExecutionException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bywt.util.WTException
              extended bycom.ptc.windchill.upgrade.modeldiff.AddConstraints.ExecutionException
All Implemented Interfaces:
LocalizableMessage, Message, Serializable
Enclosing class:
AddConstraints

public final class AddConstraints.ExecutionException
extends WTException

See Also:
Serialized Form

Field Summary
private  String processOutput_
           
 
Fields inherited from class wt.util.WTException
GETMESSAGE_LINE_SEPARATOR, LINE_SEPARATOR, SPACE_SEPARATOR, TOSTRING_LINE_SEPARATOR
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
(package private) AddConstraints.ExecutionException(String message)
          Creates a new Exception that holds a (null throwable, message, null output_string).
(package private) AddConstraints.ExecutionException(String message, String process_output)
          Creates a new Exception that holds a (null throwable, message, output_string).
(package private) AddConstraints.ExecutionException(Throwable throwable, String message)
          Creates a new Exception that holds a (throwable, message, null output_string).
 
Method Summary
 String getProcessOutput()
          Deliver the saved the output from the SQLPlus session.
 
Methods inherited from class wt.util.WTException
getAdditionalMessageArray, getAdditionalMessages, getAdditionalMessages, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, getStandardMessage, getStandardMessage, printStackTrace, printStackTrace, printStackTrace, setLocalizedMessage, toString, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

processOutput_

private String processOutput_
Constructor Detail

AddConstraints.ExecutionException

AddConstraints.ExecutionException(Throwable throwable,
                                  String message)
Creates a new Exception that holds a (throwable, message, null output_string).

Parameters:
throwable - The exception from the other thread.
message - If available, this is an explanation or the exception.

AddConstraints.ExecutionException

AddConstraints.ExecutionException(String message,
                                  String process_output)
Creates a new Exception that holds a (null throwable, message, output_string).

Parameters:
message - If available, this is an explanation of the exception.
process_output - The output that a the SQLPlus session would output to the console, if you performed this execution manually.

AddConstraints.ExecutionException

AddConstraints.ExecutionException(String message)
Creates a new Exception that holds a (null throwable, message, null output_string).

Parameters:
message - If available, an explanation of the exception.
Method Detail

getProcessOutput

public String getProcessOutput()
Deliver the saved the output from the SQLPlus session.

Returns:
The other thread's output during an SQLPlus session.