Class: Jiminy::CLI::ExitCodes::PipelineNotFound

Inherits:
Base
  • Object
show all
Defined in:
lib/jiminy/cli/exit_codes/pipeline_not_found.rb

Instance Attribute Summary

Attributes inherited from Base

#message, #value

Instance Method Summary collapse

Methods inherited from Base

#to_s

Constructor Details

#initialize(git_revision:) ⇒ PipelineNotFound

Returns a new instance of PipelineNotFound.



5
6
7
# File 'lib/jiminy/cli/exit_codes/pipeline_not_found.rb', line 5

def initialize(git_revision:)
  super("No such Pipeline with commit SHA #{git_revision}", 1)
end