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