MCPcopy Create free account
hub / github.com/SplootCode/splootcode / addExceptionResult

Method addExceptionResult

python/executor.py:749–757  ·  view source on GitHub ↗
(self, exceptionType, message, inFunction=None)

Source from the content-addressed store, hash-verified

747 self.blocks[self.childset].append(res)
748
749 def addExceptionResult(self, exceptionType, message, inFunction=None):
750 exception_details = {
751 "type": "EXCEPTION",
752 "exceptionType": exceptionType,
753 "exceptionMessage": message,
754 }
755 if inFunction:
756 exception_details["exceptionInFunction"] = inFunction
757 self.blocks[self.childset].append(exception_details)
758
759 def checkFrameLimit(self):
760 if iterationLimit and len(self.blocks[self.childset]) > iterationLimit:

Callers 2

logTracedExceptionMethod · 0.80
logExceptionMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected