diff options
| -rw-r--r-- | src/ipm/exceptions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ipm/exceptions.py b/src/ipm/exceptions.py index b19b60c..e57f6cd 100644 --- a/src/ipm/exceptions.py +++ b/src/ipm/exceptions.py @@ -10,6 +10,10 @@ class TomlLoadFailed(FileException): """Failed to load `infini.toml`""" +class LockLoadFailed(FileException): + """Failed to load `infini.lock`""" + + class FileNotFoundError(FileException, FileNotFoundError): """Raises when file not founded""" |
