LdapSocketServerNotFoundException constructor

LdapSocketServerNotFoundException(
  1. SocketException se,
  2. String remoteServer
)

Implementation

LdapSocketServerNotFoundException(SocketException se, this.remoteServer)
    : super(se, 'Server not found') {
  assert(socketException.osError?.errorCode == 8);
}