We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36a3ad commit 065b97fCopy full SHA for 065b97f
lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py
@@ -1320,6 +1320,7 @@ def terminate(self):
1320
class DebugAdapterError(Exception):
1321
pass
1322
1323
+
1324
class DebugAdapterProcessError(DebugAdapterError):
1325
"""Raised when the lldb-dap process exits with a non-zero exit status."""
1326
@@ -1335,6 +1336,7 @@ def __str__(self):
1335
1336
else:
1337
return f"lldb-dap returned non-zero exit status {self.returncode}."
1338
1339
1340
def attach_options_specified(options):
1341
if options.pid is not None:
1342
return True
0 commit comments