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 323663f commit e2dc9f8Copy full SHA for e2dc9f8
CONTRIBUTING.md
@@ -116,7 +116,7 @@ One your PR is ready a member of the development team will review your changes t
116
In general, do not catch exceptions without good reason.
117
For non-fatal exceptions, log the exception as a warning and add more information about what may have caused the error.
118
119
-If you do need to catch an exception, raise a new exception using ``raise_from(NewException("message"), oldException)`` from ``future``.
+If you do need to catch an exception, raise a new exception using ``raise NewException("message") from oldException)``.
120
Do not log this, as it creates redundant/confusing logs.
121
122
#### Testing
0 commit comments