5 lines
108 B
Python
5 lines
108 B
Python
|
import sys
|
||
|
class Error():
|
||
|
def __init__(self, error) -> None:
|
||
|
print(error)
|
||
|
sys.exit()
|