Exception: Berkshelf::CommunitySiteError

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

Instance Method Summary collapse

Methods inherited from BerkshelfError

set_status_code

Constructor Details

#initialize(uri, message) ⇒ CommunitySiteError

Returns a new instance of CommunitySiteError.



205
206
207
208
# File 'lib/berkshelf/errors.rb', line 205

def initialize(uri, message)
  @uri     = uri
  @message = message
end

Instance Method Details

#to_sObject



210
211
212
213
# File 'lib/berkshelf/errors.rb', line 210

def to_s
  "An unexpected error occurred retrieving #{@message} from the cookbook " \
  "site at '#{@api_uri}'."
end