gitlab-ce/lib/gitlab/auth/ip_blocked.rb

12 lines
207 B
Ruby

# frozen_string_literal: true
module Gitlab
module Auth
class IpBlocked < StandardError
def message
_('Too many failed authentication attempts from this IP')
end
end
end
end