Exception: SDM::NotFoundError

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

Overview

NotFoundError is used when an entity does not exist in the system

Instance Attribute Summary

Attributes inherited from RPCError

#code

Instance Method Summary collapse

Constructor Details

#initialize(msg) ⇒ NotFoundError

Returns a new instance of NotFoundError.



45
46
47
# File 'lib/errors/errors.rb', line 45

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