Exception: QRPC::Client::Exception
- Inherits:
-
Exception
- Object
- Exception
- QRPC::Client::Exception
- Defined in:
- lib/qrpc/client/exception.rb
Overview
Queue RPC client exception.
Instance Method Summary collapse
-
#initialize(name, message, backtrace = [ ]) ⇒ Exception
constructor
Constructor.
Constructor Details
#initialize(name, message, backtrace = [ ]) ⇒ Exception
Constructor. Initializes from protocol exception data object.
37 38 39 40 41 42 |
# File 'lib/qrpc/client/exception.rb', line 37 def initialize(name, , backtrace = [ ]) = name + ": " + super() self.set_backtrace(backtrace) end |