Exception: StepFailureException
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- StepFailureException
- Defined in:
- lib/shiplane/build.rb
Instance Method Summary collapse
-
#initialize(command, artifact_name, error_message: nil) ⇒ StepFailureException
constructor
A new instance of StepFailureException.
Constructor Details
#initialize(command, artifact_name, error_message: nil) ⇒ StepFailureException
210 211 212 213 |
# File 'lib/shiplane/build.rb', line 210 def initialize(command, artifact_name, error_message: nil) = "Command [#{command}] failed for artifact: #{artifact_name}#{error_message ? "\nError Message Received: #{error_message}" : ''}" if artifact_name super() end |