summaryrefslogtreecommitdiff
path: root/buildstream/plugin.py
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-06 18:15:33 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-06 18:15:33 +0900
commit27aac095bdb6b0025c989572789a1f98d8d89b3c (patch)
tree0ca7572b7db4b8b5fcb47e08fda41e22bbe41990 /buildstream/plugin.py
parent0defb35c0334d78e48bcf21ec6b106b67761e1bc (diff)
downloadbuildstream-27aac095bdb6b0025c989572789a1f98d8d89b3c.tar.gz
Refactoring: Move exceptions module to be private
Hide all of buildstream's internal exceptions from the API surface.
Diffstat (limited to 'buildstream/plugin.py')
-rw-r--r--buildstream/plugin.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/buildstream/plugin.py b/buildstream/plugin.py
index 93bac3465..23d34ab10 100644
--- a/buildstream/plugin.py
+++ b/buildstream/plugin.py
@@ -77,8 +77,7 @@ from weakref import WeakValueDictionary
from . import _yaml, _signals
from . import utils
-from . import PluginError, ImplError
-from .exceptions import _BstError
+from ._exceptions import PluginError, ImplError, _BstError
from ._message import Message, MessageType