]> git.sur5r.net Git - openldap/blob - contrib/ldapc++/src/LDAPReferralException.cpp
Happy new year
[openldap] / contrib / ldapc++ / src / LDAPReferralException.cpp
1 /*
2  * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5
6
7 #include <iostream>
8 #include "LDAPException.h"
9 #include "LDAPReferralException.h"
10 #include "LDAPResult.h"
11 #include "LDAPRequest.h"
12 #include "LDAPUrl.h"
13
14 LDAPReferralException::LDAPReferralException(const LDAPUrlList& urls) : 
15         LDAPException(LDAPResult::REFERRAL) , m_urlList(urls){
16 }
17
18 LDAPReferralException::~LDAPReferralException(){
19 }
20
21 const LDAPUrlList& LDAPReferralException::getUrls(){
22     return m_urlList;
23 }
24