mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
8 lines
99 B
Python
8 lines
99 B
Python
class SocketError(Exception):
|
|
pass
|
|
|
|
|
|
try:
|
|
raise SocketError()
|
|
except SocketError:
|
|
pass
|