Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ldap_connection_error.rb « ldap « auth « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0e5f24d203567363bb3bdf6754e3ef222245cee (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Gitlab
  module Auth
    module LDAP
      LDAPConnectionError = Class.new(StandardError)
    end
  end
end