Exception: Berkshelf::InsufficientPrivledges

Inherits:
BerkshelfError
  • Object
show all
Defined in:
lib/berkshelf/errors.rb

Instance Method Summary collapse

Methods inherited from BerkshelfError

status_code

Constructor Details

#initialize(path) ⇒ InsufficientPrivledges

Returns a new instance of InsufficientPrivledges.



161
162
163
# File 'lib/berkshelf/errors.rb', line 161

def initialize(path)
  @path = path
end

Instance Method Details

#to_sObject



165
166
167
168
169
# File 'lib/berkshelf/errors.rb', line 165

def to_s
  "You do not have permission to write to '#{@path}'! Please chown the " \
  "path to the current user, chmod the permissions to include the " \
  "user, or choose a different path."
end