Exception: MessagePack::RPC::CallError

Inherits:
RPCError
  • Object
show all
Defined in:
lib/msgpack/rpc/exception.rb

Direct Known Subclasses

ArgumentError, NoMethodError

Constant Summary collapse

CODE =
".CallError"

Instance Attribute Summary

Attributes inherited from RPCError

#code, #data

Instance Method Summary collapse

Methods inherited from RPCError

create, #is?

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