mirror of
https://github.com/frappe/bench.git
synced 2025-01-24 07:28:25 +00:00
a84239d6ab
* Drop patches of v3 & v4 * Re-write buggy / broken code wrt hints by pre-commit checks * Auto-format and transform code * Remove re-written & mutable function defaults
43 lines
528 B
Python
43 lines
528 B
Python
class InvalidBranchException(Exception):
|
|
pass
|
|
|
|
|
|
class InvalidRemoteException(Exception):
|
|
pass
|
|
|
|
|
|
class PatchError(Exception):
|
|
pass
|
|
|
|
|
|
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
|