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.



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

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