1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
class Net::LDAP
class Error < StandardError; end
class AlreadyOpenedError < Error; end
class SocketError < Error; end
class ConnectionError < Error
def self.new(errors)
error = errors.first.first
if errors.size == 1
return error if error.is_a? Errno::ECONNREFUSED
return Net::LDAP::Error.new(error.message)
end
super
end
def initialize(errors)
message = "Unable to connect to any given server: \n #{errors.map { |e, h, p| "#{e.class}: #{e.message} (#{h}:#{p})" }.join("\n ")}"
super(message)
end
end
class NoOpenSSLError < Error; end
class NoStartTLSResultError < Error; end
class NoSearchBaseError < Error; end
class StartTLSError < Error; end
class EncryptionUnsupportedError < Error; end
class EncMethodUnsupportedError < Error; end
class AuthMethodUnsupportedError < Error; end
class BindingInformationInvalidError < Error; end
class NoBindResultError < Error; end
class SASLChallengeOverflowError < Error; end
class SearchSizeInvalidError < Error; end
class SearchScopeInvalidError < Error; end
class ResponseTypeInvalidError < Error; end
class ResponseMissingOrInvalidError < Error; end
class EmptyDNError < Error; end
class InvalidDNError < Error; end
class HashTypeUnsupportedError < Error; end
class OperatorError < Error; end
class SubstringFilterError < Error; end
class SearchFilterError < Error; end
class BERInvalidError < Error; end
class SearchFilterTypeUnknownError < Error; end
class BadAttributeError < Error; end
class FilterTypeUnknownError < Error; end
class FilterSyntaxInvalidError < Error; end
class EntryOverflowError < Error; end
end
|