You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a task raised an exception, its `.exception_class` will be the exception class raised:
205
205
206
206
```python
207
-
assert result.exception==ValueError
207
+
assert result.exception_class==ValueError
208
208
```
209
209
210
210
Note that this is just the type of exception, and contains no other values. The traceback information is reduced to a string that you can print to help debugging:
0 commit comments