module DMAO module API module Errors class InvalidSystemUUID < StandardError attr_reader :errors def initialize(msg="Invalid system UUID specified") super(msg) end end end end end