Exception: Magnetite::Routing::PipelineNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/magnetite/routing/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(pipeline_name) ⇒ PipelineNotFound

Returns a new instance of PipelineNotFound.



30
31
32
# File 'lib/magnetite/routing/errors.rb', line 30

def initialize(pipeline_name)
  @pipeline_name = pipeline_name
end

Instance Method Details

#to_sObject



34
35
36
# File 'lib/magnetite/routing/errors.rb', line 34

def to_s
  "Pipeline #{@pipeline_name} not found in the router"
end