2
0
mirror of https://github.com/frappe/bench.git synced 2024-06-26 19:23:30 +00:00
bench/bench/exceptions.py

43 lines
528 B
Python
Raw Permalink Normal View History

2021-10-21 11:06:03 +00:00
class InvalidBranchException(Exception):
pass
2021-10-21 11:06:03 +00:00
class InvalidRemoteException(Exception):
pass
2021-10-21 11:06:03 +00:00
class PatchError(Exception):
pass
2021-10-21 11:06:03 +00:00
class CommandFailedError(Exception):
pass
class BenchNotFoundError(Exception):
pass
class ValidationError(Exception):
pass
class AppNotInstalledError(ValidationError):
pass
class CannotUpdateReleaseBench(ValidationError):
pass
class FeatureDoesNotExistError(CommandFailedError):
pass
class NotInBenchDirectoryError(Exception):
pass
class VersionNotFound(Exception):
pass