15 lines
165 B
Python
15 lines
165 B
Python
![]() |
class Error(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class RuntimeError(Error):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ProgramError(Error):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class RuntimeUnavailableError(RuntimeError):
|
||
|
pass
|