module DMAO module API module Errors class EntityNotFound < StandardError def initialize(msg="Invalid entity id specified, id does not exist for requesting institution.") super(msg) end end end end end