Sha256: 62bf11b1042dbadcf628d151a847815c04c6f59fdf5cb238a6891025b0c3bf01

Contents?: true

Size: 240 Bytes

Versions: 1

Compression:

Stored size: 240 Bytes

Contents

# frozen_string_literal: true

module MinatoErrorHandler
  module Errors
    class NotAuthenticatedError < InternalError
      def message
        "not authenticated"
      end

      def status_code
        401
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
minato_error_handler-0.1.10 lib/minato_error_handler/errors/not_authenticated_error.rb