require_relative 'entity_not_found' module DMAO module API module Errors class FunderNotFound < EntityNotFound def initialize(msg="Invalid funder id specified, id does not exist for requesting institution.") super(msg) end end end end end