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.



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

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