class SDM::NotFoundError

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

Public Class Methods

new(msg) click to toggle source
Calls superclass method SDM::RPCError::new
# File lib/errors/errors.rb, line 44
def initialize(msg)
    super(msg, 5)
end