Exception: Fraggle::Connection::SendError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/fraggle/connection.rb

Overview

Raised when a request is invalid

Instance Method Summary collapse

Constructor Details

#initialize(req, msg = nil) ⇒ SendError

Returns a new instance of SendError.



9
10
11
12
# File 'lib/fraggle/connection.rb', line 9

def initialize(req, msg=nil)
  @req = req
  super(msg)
end