class Clamp::ExecutionError
raise to signal error during execution
Attributes
status[R]
Public Class Methods
new(message, command, status = 1)
click to toggle source
Calls superclass method
Clamp::RuntimeError.new
# File lib/clamp/errors.rb, line 32 def initialize(message, command, status = 1) super(message, command) @status = status end