Class: Envoy::Transport

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

Direct Known Subclasses

Campfire, Email, Webhook

Defined Under Namespace

Classes: SendError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Transport

Returns a new instance of Transport.

Raises:

  • (NotImplementedError)


28
29
30
# File 'lib/envoy/transport.rb', line 28

def initialize(*args)
  raise NotImplementedError, "This is an abstract class. You cannot instantiate this class directly."
end

Instance Attribute Details

#errorsObject

Returns the value of attribute errors.



26
27
28
# File 'lib/envoy/transport.rb', line 26

def errors
  @errors
end