Exception: Rake::CommandFailedError
- Defined in:
- lib/rake/remote_task.rb
Overview
Raised when a remote command fails.
Instance Attribute Summary collapse
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(status) ⇒ CommandFailedError
constructor
A new instance of CommandFailedError.
Constructor Details
#initialize(status) ⇒ CommandFailedError
Returns a new instance of CommandFailedError.
32 33 34 |
# File 'lib/rake/remote_task.rb', line 32 def initialize( status ) @status = status end |
Instance Attribute Details
#status ⇒ Object (readonly)
Returns the value of attribute status.
31 32 33 |
# File 'lib/rake/remote_task.rb', line 31 def status @status end |