Exception: OpenVidu::ResponseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/open_vidu/exceptions.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ResponseError

Returns a new instance of ResponseError.



4
5
6
7
# File 'lib/open_vidu/exceptions.rb', line 4

def initialize(response)
  @response = response
  super("OpenVidu Response error code: #{response.code}")
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



3
4
5
# File 'lib/open_vidu/exceptions.rb', line 3

def response
  @response
end