mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 07:39:35 -05:00
25 lines
542 B
C++
25 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;
|
||
|
|
}
|
||
|
|
|