mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 06:11:43 +00:00
18 lines
175 B
Python
18 lines
175 B
Python
class Error(Exception):
|
|
pass
|
|
|
|
|
|
class AnotherError(Exception):
|
|
pass
|
|
|
|
|
|
class C(Exception):
|
|
pass
|
|
|
|
|
|
class D(BaseException):
|
|
pass
|
|
|
|
|
|
class E(AnotherError):
|
|
pass
|