Exception: Punchblock::ProtocolError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/punchblock/protocol_error.rb

Overview

This exception may be raised if a transport error is detected.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, text = nil, call_id = nil, component_id = nil) ⇒ ProtocolError

Returns a new instance of ProtocolError.



7
8
9
# File 'lib/punchblock/protocol_error.rb', line 7

def initialize(name = nil, text = nil, call_id = nil, component_id = nil)
  @name, @text, @call_id, @component_id = name, text, call_id, component_id
end

Instance Attribute Details

#call_idObject

Returns the value of attribute call_id.



5
6
7
# File 'lib/punchblock/protocol_error.rb', line 5

def call_id
  @call_id
end

#component_idObject

Returns the value of attribute component_id.



5
6
7
# File 'lib/punchblock/protocol_error.rb', line 5

def component_id
  @component_id
end

#nameObject

Returns the value of attribute name.



5
6
7
# File 'lib/punchblock/protocol_error.rb', line 5

def name
  @name
end

#textObject

Returns the value of attribute text.



5
6
7
# File 'lib/punchblock/protocol_error.rb', line 5

def text
  @text
end

Instance Method Details

#to_sObject Also known as: inspect



11
12
13
# File 'lib/punchblock/protocol_error.rb', line 11

def to_s
  "#<#{self.class}: name=#{name.inspect} text=#{text.inspect} call_id=#{call_id.inspect} component_id=#{component_id.inspect}>"
end