Class: ActiveRpc::Errors::ServerError

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:) ⇒ ServerError

Returns a new instance of ServerError.



66
67
68
# File 'lib/active_rpc/errors.rb', line 66

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