Exception: S7n::CommandFailed
- Inherits:
-
ApplicationError
- Object
- StandardError
- ApplicationError
- S7n::CommandFailed
- Defined in:
- lib/s7n/exception.rb
Overview
OS のコマンドの実行に失敗したことを表現する例外クラス。
Instance Method Summary collapse
-
#initialize(command, status) ⇒ CommandFailed
constructor
- command
- 失敗したコマンド status
-
コマンドの終了ステータス.
- #to_s ⇒ Object
Constructor Details
#initialize(command, status) ⇒ CommandFailed
- command
-
失敗したコマンド
- status
-
コマンドの終了ステータス
107 108 109 110 |
# File 'lib/s7n/exception.rb', line 107 def initialize(command, status) @command = command @status = status end |
Instance Method Details
#to_s ⇒ Object
112 113 114 |
# File 'lib/s7n/exception.rb', line 112 def to_s return _("Failed the command: command=<%s> status=<%d>") % [@command, @status] end |