Skip to content
Snippets Groups Projects
Commit 23f3f1ad authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Make InstallError and ExternalPackageError visiible in packages.

parent 741bea03
No related branches found
No related tags found
No related merge requests found
...@@ -189,5 +189,9 @@ ...@@ -189,5 +189,9 @@
from spack.util.executable import * from spack.util.executable import *
__all__ += spack.util.executable.__all__ __all__ += spack.util.executable.__all__
from spack.package import install_dependency_symlinks, flatten_dependencies, DependencyConflictError from spack.package import \
__all__ += ['install_dependency_symlinks', 'flatten_dependencies', 'DependencyConflictError'] install_dependency_symlinks, flatten_dependencies, DependencyConflictError, \
InstallError, ExternalPackageError
__all__ += [
'install_dependency_symlinks', 'flatten_dependencies', 'DependencyConflictError',
'InstallError', 'ExternalPackageError']
...@@ -1351,6 +1351,10 @@ def __init__(self, message, long_msg=None): ...@@ -1351,6 +1351,10 @@ def __init__(self, message, long_msg=None):
super(InstallError, self).__init__(message, long_msg) super(InstallError, self).__init__(message, long_msg)
class ExternalPackageError(InstallError):
"""Raised by install() when a package is only for external use."""
class PackageStillNeededError(InstallError): class PackageStillNeededError(InstallError):
"""Raised when package is still needed by another on uninstall.""" """Raised when package is still needed by another on uninstall."""
def __init__(self, spec, dependents): def __init__(self, spec, dependents):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment