Exception: Deftones::CodecCommandError
- Defined in:
- lib/deftones.rb
Instance Attribute Summary collapse
-
#command ⇒ Object
readonly
Returns the value of attribute command.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#stderr ⇒ Object
readonly
Returns the value of attribute stderr.
-
#stdout ⇒ Object
readonly
Returns the value of attribute stdout.
Instance Method Summary collapse
-
#initialize(message, command:, stdout:, stderr:, status:) ⇒ CodecCommandError
constructor
A new instance of CodecCommandError.
Constructor Details
#initialize(message, command:, stdout:, stderr:, status:) ⇒ CodecCommandError
Returns a new instance of CodecCommandError.
10 11 12 13 14 15 16 |
# File 'lib/deftones.rb', line 10 def initialize(, command:, stdout:, stderr:, status:) super() @command = command @stdout = stdout @stderr = stderr @status = status end |
Instance Attribute Details
#command ⇒ Object (readonly)
Returns the value of attribute command.
8 9 10 |
# File 'lib/deftones.rb', line 8 def command @command end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
8 9 10 |
# File 'lib/deftones.rb', line 8 def status @status end |
#stderr ⇒ Object (readonly)
Returns the value of attribute stderr.
8 9 10 |
# File 'lib/deftones.rb', line 8 def stderr @stderr end |
#stdout ⇒ Object (readonly)
Returns the value of attribute stdout.
8 9 10 |
# File 'lib/deftones.rb', line 8 def stdout @stdout end |