Raise when failed to install package.
| 25 | |
| 26 | |
| 27 | class PipInstallError(CacheError): |
| 28 | """Raise when failed to install package.""" |
| 29 | def __init__(self, package): |
| 30 | super().__init__(f"Ran into error installing {package}.") |
| 31 | |
| 32 | |
| 33 | class MultiTypeError(CacheError): |