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