mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
(cherry picked from commit 4d03313cce07e4c3ff4748328cf2e04ba74b8d91) IJ-MR-24242 GitOrigin-RevId: fa6c1b9077ef78b35c8f3453debcf06bcbc96364
6 lines
142 B
Python
6 lines
142 B
Python
try:
|
|
raise ExceptionGroup("asdf", [Exception("fdsa")])
|
|
except* Exception as ex:
|
|
print(ex)
|
|
for e in ex.exceptions:
|
|
print(e) |