Sha256: 052f6788b1f6c94fe8c17ba6d87c7f6922a7cf82231401bd79bd03108953d773
Contents?: true
Size: 656 Bytes
Versions: 57
Compression:
Stored size: 656 Bytes
Contents
# encoding: utf-8 module Github #:nodoc # Raised when invalid options are passed to a request body module Error class InvalidOptions < ClientError def initialize(invalid, valid) super( generate_message( :problem => "Invalid option #{invalid.keys.join(', ')} provided for this request.", :summary => "Github gem checks the request parameters passed to ensure that github api is not hit unnecessairly and to fail fast.", :resolution => "Valid options are: #{valid.join(', ')}, make sure these are the ones you are using" ) ) end end end # Error end # Github
Version data entries
57 entries across 57 versions & 1 rubygems