mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 23:29:34 -05:00
24 lines
542 B
C++
24 lines
542 B
C++
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
|
|
#include <iostream>
|
|
#include "LDAPException.h"
|
|
#include "LDAPReferralException.h"
|
|
#include "LDAPResult.h"
|
|
#include "LDAPRequest.h"
|
|
#include "LDAPUrl.h"
|
|
|
|
LDAPReferralException::LDAPReferralException(const LDAPUrlList& urls) :
|
|
LDAPException(LDAPResult::REFERRAL) , m_urlList(urls){
|
|
}
|
|
|
|
LDAPReferralException::~LDAPReferralException(){
|
|
}
|
|
|
|
const LDAPUrlList& LDAPReferralException::getUrls(){
|
|
return m_urlList;
|
|
}
|
|
|