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 e9afad1 commit 39b88cdCopy full SHA for 39b88cd
tests/exceptions.py
@@ -0,0 +1,8 @@
1
+# header placeholder
2
+
3
+__module__ = "tests.exceptions"
4
5
+class CommandExecutionError(RuntimeError):
6
+ def __init__(self, message, exit_code, *args, **kwargs):
7
+ super().__init__(message, *args, **kwargs)
8
+ self.exit_code = exit_code
0 commit comments