Files
discourse/lib/second_factor/bad_challenge.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
278 B
Ruby
Raw Normal View History

2022-02-17 12:12:59 +03:00
# frozen_string_literal: true
class SecondFactor::BadChallenge < StandardError
attr_reader :error_translation_key, :status_code
def initialize(error_translation_key, status_code:)
@error_translation_key = error_translation_key
@status_code = status_code
end
end