mirror of
https://github.com/opendatalab/MinerU.git
synced 2026-09-21 20:49:56 +08:00
33 lines
622 B
Python
33 lines
622 B
Python
|
|
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}'
|