Exception: MessagePack::RPC::CallError
- Defined in:
- lib/msgpack/rpc/exception.rb
Direct Known Subclasses
Constant Summary collapse
- CODE =
".CallError"
Instance Attribute Summary
Attributes inherited from RPCError
Instance Method Summary collapse
-
#initialize(msg) ⇒ CallError
constructor
A new instance of CallError.
Methods inherited from RPCError
Constructor Details
#initialize(msg) ⇒ CallError
Returns a new instance of CallError.
102 103 104 |
# File 'lib/msgpack/rpc/exception.rb', line 102 def initialize(msg) super(self.class::CODE, msg) end |