require_relative 'base' module Yardi module Error # Raised when a Yardi response is missing any real data. This can happen # when part of the authentication section of the request is missing or # invalid. class EmptyResponse < Base end end end