class StepFailureException

Public Class Methods

new(command, artifact_name) click to toggle source
Calls superclass method
# File lib/shiplane/build.rb, line 201
def initialize(command, artifact_name)
  message = "Command [#{command}] failed for artifact: #{artifact_name}" if artifact_name
  super(message)
end