Exception: Clearbooks::InsufficientPrivledges

Inherits:
ClearbooksError show all
Defined in:
lib/clearbooks/error/errors.rb

Instance Method Summary collapse

Methods inherited from ClearbooksError

status_code

Constructor Details

#initialize(path) ⇒ InsufficientPrivledges

Returns a new instance of InsufficientPrivledges.



140
141
142
# File 'lib/clearbooks/error/errors.rb', line 140

def initialize(path)
  @path = path
end

Instance Method Details

#to_sObject



144
145
146
147
148
# File 'lib/clearbooks/error/errors.rb', line 144

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