module DMAO module Ingesters module Errors class IngestEntityError < StandardError def initialize(msg="Error ingesting entity.") super(msg) end end end end end