Exception: SDM::BadRequestError

Inherits:
RPCError
  • Object
show all
Defined in:
lib/errors/errors.rb

Overview

BadRequestError identifies a bad request sent by the client

Instance Attribute Summary

Attributes inherited from RPCError

#code

Instance Method Summary collapse

Constructor Details

#initialize(msg) ⇒ BadRequestError

Returns a new instance of BadRequestError.



52
53
54
# File 'lib/errors/errors.rb', line 52

def initialize(msg)
  super(msg, 3)
end