Exception: Bsdkrun::BinaryNotFound
- Defined in:
- lib/bsdkrun/errors.rb
Overview
The bsdkrun binary could not be located on the host.
Instance Method Summary collapse
-
#initialize(searched) ⇒ BinaryNotFound
constructor
A new instance of BinaryNotFound.
Constructor Details
#initialize(searched) ⇒ BinaryNotFound
Returns a new instance of BinaryNotFound.
10 11 12 13 14 15 |
# File 'lib/bsdkrun/errors.rb', line 10 def initialize(searched) super( 'could not find the "bsdkrun" binary. Set BSDKRUN_BIN, add it to PATH, ' \ "or set Bsdkrun.binary_path=. Looked in: #{Array(searched).join(', ')}" ) end |