magoffin.matt.ma2
Class ProcessingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by magoffin.matt.ma2.ProcessingException
All Implemented Interfaces:
java.io.Serializable

public class ProcessingException
extends java.lang.RuntimeException

Runtime exception thrown to signify a process completed, but some error still occured.

Version:
$Revision: 43 $ $Date: 2007-10-21 11:10:01 +1300 (Sun, 21 Oct 2007) $
Author:
Matt Magoffin (spamsqr@msqr.us)
See Also:
Serialized Form

Constructor Summary
ProcessingException(java.lang.Object result, java.lang.String msg)
          Constrcut with a result and message.
ProcessingException(java.lang.Object result, java.lang.String msg, java.lang.Throwable thr)
          Construct with a result, message, and nested exception.
ProcessingException(java.lang.Object result, java.lang.Throwable thr)
          Construct with a result and nested exception.
ProcessingException(java.lang.Throwable thr)
          Construct with nested exception.
 
Method Summary
 java.lang.Object getProcessResult()
          Get the processing result.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProcessingException

public ProcessingException(java.lang.Throwable thr)
Construct with nested exception.

Parameters:
thr - exception

ProcessingException

public ProcessingException(java.lang.Object result,
                           java.lang.Throwable thr)
Construct with a result and nested exception.

Parameters:
result - result
thr - exception

ProcessingException

public ProcessingException(java.lang.Object result,
                           java.lang.String msg)
Constrcut with a result and message.

Parameters:
result - result
msg - message

ProcessingException

public ProcessingException(java.lang.Object result,
                           java.lang.String msg,
                           java.lang.Throwable thr)
Construct with a result, message, and nested exception.

Parameters:
result - result
msg - message
thr - exception
Method Detail

getProcessResult

public java.lang.Object getProcessResult()
Get the processing result.

Returns:
result