updates
This commit is contained in:
15
Backend/venv/lib/python3.12/site-packages/dparse/errors.py
Normal file
15
Backend/venv/lib/python3.12/site-packages/dparse/errors.py
Normal file
@@ -0,0 +1,15 @@
|
||||
class UnknownDependencyFileError(Exception):
|
||||
"""
|
||||
|
||||
"""
|
||||
def __init__(self, message="Unknown File type to parse"):
|
||||
self.message = message
|
||||
super().__init__(self.message)
|
||||
|
||||
|
||||
class MalformedDependencyFileError(Exception):
|
||||
|
||||
def __init__(self, message="The dependency file is malformed. {info}",
|
||||
info=""):
|
||||
self.message = message.format(info=info)
|
||||
super().__init__(self.message)
|
||||
Reference in New Issue
Block a user