Exception: Envoy::Transport::SendError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/envoy/transport.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, created_at) ⇒ SendError

Returns a new instance of SendError.



20
21
22
23
# File 'lib/envoy/transport.rb', line 20

def initialize(message, created_at)
  self.message = message
  self.created_at = created_at
end

Instance Attribute Details

#created_atObject

Returns the value of attribute created_at.



18
19
20
# File 'lib/envoy/transport.rb', line 18

def created_at
  @created_at
end

#messageObject

Returns the value of attribute message.



18
19
20
# File 'lib/envoy/transport.rb', line 18

def message
  @message
end