Exception: Leakferret::BinaryInvocationError
- Defined in:
- lib/leakferret/error.rb
Instance Attribute Summary collapse
-
#exit_status ⇒ Object
readonly
Returns the value of attribute exit_status.
-
#stderr ⇒ Object
readonly
Returns the value of attribute stderr.
Instance Method Summary collapse
-
#initialize(message, exit_status:, stderr:) ⇒ BinaryInvocationError
constructor
A new instance of BinaryInvocationError.
Constructor Details
#initialize(message, exit_status:, stderr:) ⇒ BinaryInvocationError
Returns a new instance of BinaryInvocationError.
9 10 11 12 13 |
# File 'lib/leakferret/error.rb', line 9 def initialize(, exit_status:, stderr:) super() @exit_status = exit_status @stderr = stderr end |
Instance Attribute Details
#exit_status ⇒ Object (readonly)
Returns the value of attribute exit_status.
7 8 9 |
# File 'lib/leakferret/error.rb', line 7 def exit_status @exit_status end |
#stderr ⇒ Object (readonly)
Returns the value of attribute stderr.
7 8 9 |
# File 'lib/leakferret/error.rb', line 7 def stderr @stderr end |