Home | History | Annotate | Download | only in scripts

Lines Matching refs:errorCode

136 	class ErrorCode:
140 def applyAndCaptureError (func, args, errorCode):
144 errorCode.error = sys.exc_info()
146 errorCode = ErrorCode()
149 job = threading.Thread(target=applyAndCaptureError, args=(f, args, errorCode))
156 if errorCode.error:
157 raise errorCode.error[0], errorCode.error[1], errorCode.error[2]