summaryrefslogtreecommitdiff
path: root/buildstream/_pipeline.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/_pipeline.py')
-rw-r--r--buildstream/_pipeline.py16
1 files changed, 1 insertions, 15 deletions
diff --git a/buildstream/_pipeline.py b/buildstream/_pipeline.py
index c7cd61ecf..90ed899ea 100644
--- a/buildstream/_pipeline.py
+++ b/buildstream/_pipeline.py
@@ -29,7 +29,7 @@ from operator import itemgetter
from tempfile import TemporaryDirectory
from pluginbase import PluginBase
-from ._exceptions import _BstError, ArtifactError, ImplError, LoadError
+from ._exceptions import PipelineError, ArtifactError, ImplError
from ._message import Message, MessageType
from ._elementfactory import ElementFactory
from ._loader import Loader
@@ -44,20 +44,6 @@ from .element import Element
from ._scheduler import SchedStatus, TrackQueue, FetchQueue, BuildQueue, PullQueue, PushQueue
-# Internal exception raised when a pipeline fails
-#
-class PipelineError(_BstError):
-
- def __init__(self, message=None):
-
- # The empty string should never appear to a user,
- # this only allows us to treat this internal error as
- # a _BstError from the frontend.
- if message is None:
- message = ""
- super(PipelineError, self).__init__(message)
-
-
class Planner():
def __init__(self):
self.depth_map = {}