Class: ActiveRpc::Errors::ClientError

Inherits:
ActiveRpc::Error show all
Defined in:
lib/active_rpc/errors.rb

Instance Attribute Summary

Attributes inherited from ActiveRpc::Error

#code, #data, #message

Instance Method Summary collapse

Methods inherited from ActiveRpc::Error

#to_hash

Constructor Details

#initialize(message:) ⇒ ClientError

Returns a new instance of ClientError.



36
37
38
# File 'lib/active_rpc/errors.rb', line 36

def initialize(message:)
  super(message: message, code: -32600)
end