emojidex/emojidex

View on GitHub
lib/emojidex/service/error.rb

Summary

Maintainability
A
0 mins
Test Coverage
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