Exception: Ticketing::ConnectionClosed

Inherits:
StandardError
  • Object
show all
Defined in:
lib/ticketing/errors.rb

Overview

Marker for a connection that was lost or never established. Wrapped in an IoError so a dropped socket can be told apart from a real I/O fault.

Instance Method Summary collapse

Constructor Details

#initialize(message = "connection closed") ⇒ ConnectionClosed

Returns a new instance of ConnectionClosed.



55
56
57
# File 'lib/ticketing/errors.rb', line 55

def initialize(message = "connection closed")
  super
end