# File lib/active_ldap/adapter/net_ldap.rb, line 43
      def bind(options={})
        @bound = false
        begin
          super
        rescue Net::LDAP::LdapError
          raise AuthenticationError, $!.message
        end
      end