lib/the_help/errors.rb in the_help-1.1.3 vs lib/the_help/errors.rb in the_help-1.1.4

- old
+ new

@@ -1,7 +1,9 @@ # frozen_string_literal: true module TheHelp - class AbstractClassError < StandardError; end - class ServiceNotImplementedError < StandardError; end - class NotAuthorizedError < RuntimeError; end + module Errors + class AbstractClassError < StandardError; end + class ServiceNotImplementedError < StandardError; end + class NotAuthorizedError < RuntimeError; end + end end