Exception: PipelinesNotFoundException
- Inherits:
-
Exception
- Object
- Exception
- PipelinesNotFoundException
- Defined in:
- lib/gocd/exception/pipelines_not_found_exception.rb
Instance Attribute Summary collapse
-
#missing_pipelines ⇒ Object
readonly
Returns the value of attribute missing_pipelines.
Instance Method Summary collapse
-
#initialize(missing_pipelines) ⇒ PipelinesNotFoundException
constructor
A new instance of PipelinesNotFoundException.
- #message ⇒ Object
Constructor Details
#initialize(missing_pipelines) ⇒ PipelinesNotFoundException
Returns a new instance of PipelinesNotFoundException.
4 5 6 |
# File 'lib/gocd/exception/pipelines_not_found_exception.rb', line 4 def initialize(missing_pipelines) @missing_pipelines = missing_pipelines end |
Instance Attribute Details
#missing_pipelines ⇒ Object (readonly)
Returns the value of attribute missing_pipelines.
2 3 4 |
# File 'lib/gocd/exception/pipelines_not_found_exception.rb', line 2 def missing_pipelines @missing_pipelines end |
Instance Method Details
#message ⇒ Object
8 9 10 |
# File 'lib/gocd/exception/pipelines_not_found_exception.rb', line 8 def "Could not find #{@missing_pipelines}" end |