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
try:
# some code
...
exceptSomeExeceptionasexc:
raiseMyException("my message") fromexc
What I expect to happen:
an output like in core Python:
Traceback (most recent call last):
...
SomeExeception: some message
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
...
ValueError: my message
What actually happened:
I get only
Traceback (most recent call last):
...
ValueError: my message
What version of Python and Zope/Addons I am using:
Python 3.10 with Zope 5 and Plone 6
The text was updated successfully, but these errors were encountered:
BUG or UNSUPPORTED PYTHON FEATURE
What I did:
In my code used the
raise from
construct see also https://www.pythontutorial.net/python-oop/python-raise-from/:What I expect to happen:
an output like in core Python:
What actually happened:
I get only
What version of Python and Zope/Addons I am using:
Python 3.10 with Zope 5 and Plone 6
The text was updated successfully, but these errors were encountered: