| 1234567891011121314151617181920212223242526272829303132 |
- class FileNotExisted(Exception):
- def __init__(self, path):
- self.path = path
- def __str__(self):
- return f'File {self.path} does not exist.'
- class InvalidConfig(Exception):
- def __init__(self, msg):
- self.msg = msg
- def __str__(self):
- return f'Invalid config: {self.msg}'
- class InvalidParams(Exception):
- def __init__(self, msg):
- self.msg = msg
- def __str__(self):
- return f'Invalid params: {self.msg}'
- class EmptyData(Exception):
- def __init__(self, msg):
- self.msg = msg
- def __str__(self):
- return f'Empty data: {self.msg}'
|