module DMAO module API module Errors class InvalidDMPID < StandardError def initialize(msg="Invalid DMP ID specified") super(msg) end end end end end