lib/emojidex/service/error.rb in emojidex-0.1.0 vs lib/emojidex/service/error.rb in emojidex-0.2.0

- old
+ new

@@ -1,8 +1,9 @@ module Emojidex module Service module Error class Unauthorized < SecurityError; end + class PaymentRequired < StandardError; end class UnprocessableEntity < StandardError; end class InvalidJSON < StandardError; end end end end