module DMAO module API module Errors class InvalidProjectParticipantID < StandardError attr_reader :errors def initialize(msg="Invalid project participant ID specified") super(msg) end end end end end