Sha256: 653bd792c5a69143d4001d1ba7c3aaf87bcdb6e0e6e637f7a25c750cbe4aae8c

Contents?: true

Size: 275 Bytes

Versions: 2

Compression:

Stored size: 275 Bytes

Contents

module Jiminy
  class CLI
    module ExitCodes
      class WorkflowNotFound < Base
        def initialize(pipeline_id:, workflow_name:)
          super("Unable to find workflow called '#{workflow_name}' in Pipeline #{pipeline_id}", 1)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jiminy-0.4.0 lib/jiminy/cli/exit_codes/workflow_not_found.rb
jiminy-0.3.0 lib/jiminy/cli/exit_codes/workflow_not_found.rb