Exception: MessagePack::RPC::TimeoutError

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

Overview

Top Level Errors

Constant Summary collapse

CODE =
".TimeoutError"

Instance Attribute Summary

Attributes inherited from RPCError

#code, #data

Instance Method Summary collapse

Methods inherited from RPCError

create, #is?

Constructor Details

#initialize(msg) ⇒ TimeoutError

Returns a new instance of TimeoutError.



88
89
90
# File 'lib/msgpack/rpc/exception.rb', line 88

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