Exception: MessagePack::RPC::TransportError

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

Constant Summary collapse

CODE =
".TransportError"

Instance Attribute Summary

Attributes inherited from RPCError

#code, #data

Instance Method Summary collapse

Methods inherited from RPCError

create, #is?

Constructor Details

#initialize(msg) ⇒ TransportError

Returns a new instance of TransportError.



95
96
97
# File 'lib/msgpack/rpc/exception.rb', line 95

def initialize(msg)
	super(self.class::CODE, msg)
end