Class: UntitledApi::ManufEp400ErrorException

Inherits:
APIException
  • Object
show all
Defined in:
lib/untitled_api/exceptions/manuf_ep400_error_exception.rb

Overview

Manuf Ep 400 Error class.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reason, response) ⇒ ManufEp400ErrorException

The constructor.

Parameters:

  • The (String)

    reason for raising an exception.

  • The (HttpResponse)

    HttpReponse of the API call.



19
20
21
22
23
# File 'lib/untitled_api/exceptions/manuf_ep400_error_exception.rb', line 19

def initialize(reason, response)
  super(reason, response)
  hash = APIHelper.json_deserialize(@response.raw_body)
  unbox(hash)
end

Instance Attribute Details

#detailObject

TODO: Write general description for this method

Returns:

  • (Object)


14
15
16
# File 'lib/untitled_api/exceptions/manuf_ep400_error_exception.rb', line 14

def detail
  @detail
end

Instance Method Details

#unbox(hash) ⇒ Object

Populates this object by extracting properties from a hash. response body.

Parameters:

  • The (Hash)

    deserialized response sent by the server in the



28
29
30
# File 'lib/untitled_api/exceptions/manuf_ep400_error_exception.rb', line 28

def unbox(hash)
  @detail = hash.key?('detail') ? hash['detail'] : SKIP
end