Exception: Bsdkrun::FileTransferFailed
- Defined in:
- lib/bsdkrun/errors.rb
Overview
A guest filesystem operation was refused (see FileSystem).
Instance Attribute Summary collapse
-
#path ⇒ String
readonly
The path that could not be transferred.
Instance Method Summary collapse
-
#initialize(message, path) ⇒ FileTransferFailed
constructor
A new instance of FileTransferFailed.
Constructor Details
#initialize(message, path) ⇒ FileTransferFailed
Returns a new instance of FileTransferFailed.
60 61 62 63 |
# File 'lib/bsdkrun/errors.rb', line 60 def initialize(, path) @path = path super() end |
Instance Attribute Details
#path ⇒ String (readonly)
Returns the path that could not be transferred.
56 57 58 |
# File 'lib/bsdkrun/errors.rb', line 56 def path @path end |