Exception: Bundler::PermissionError
- Inherits:
-
BundlerError
- Object
- StandardError
- BundlerError
- Bundler::PermissionError
- Defined in:
- lib/bundler/errors.rb
Direct Known Subclasses
NoSpaceOnDeviceError, OperationNotSupportedError, TemporaryResourceError
Instance Method Summary collapse
- #action ⇒ Object
-
#initialize(path, permission_type = :write) ⇒ PermissionError
constructor
A new instance of PermissionError.
- #message ⇒ Object
Methods inherited from BundlerError
Constructor Details
#initialize(path, permission_type = :write) ⇒ PermissionError
Returns a new instance of PermissionError.
63 64 65 66 |
# File 'lib/bundler/errors.rb', line 63 def initialize(path, = :write) @path = path @permission_type = end |
Instance Method Details
#action ⇒ Object
68 69 70 71 72 73 74 75 |
# File 'lib/bundler/errors.rb', line 68 def action case @permission_type when :read then "read from" when :write then "write to" when :executable, :exec then "execute" else @permission_type.to_s end end |
#message ⇒ Object
77 78 79 80 81 |
# File 'lib/bundler/errors.rb', line 77 def "There was an error while trying to #{action} `#{@path}`. " \ "It is likely that you need to grant #{@permission_type} permissions " \ "for that path." end |