11 lines
106 B
Python
11 lines
106 B
Python
class Error(Exception):
|
|
pass
|
|
|
|
|
|
class AnotherError(Exception):
|
|
pass
|
|
|
|
|
|
class C(Exception):
|
|
pass
|