summaryrefslogtreecommitdiff
path: root/lib/rubygems/webauthn_listener/response/response_not_found.rb
blob: c1207cea36c1d6727c5c6e5ed925d9fd7c091339 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
require_relative "../response"

class Gem::WebauthnListener::ResponseNotFound < Gem::WebauthnListener::Response
  private

  def status
    "404 Not Found"
  end
end