]> git.sur5r.net Git - openldap/blob - contrib/ldapc++/src/LDAPReferralException.h
- some new Classes for sync. LDAP operations
[openldap] / contrib / ldapc++ / src / LDAPReferralException.h
1 /*
2  * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5
6
7 #ifndef LDAP_REFERRAL_EXCEPTION_H
8 #define LDAP_REFERRAL_EXCEPTION_H
9
10 #include <list>
11 #include "LDAPMessage.h"
12 #include "LDAPUrlList.h"
13
14 class LDAPUrlList;
15
16 class LDAPReferralException : public LDAPException{
17
18     private :
19         LDAPUrlList m_urlList;
20
21     public :
22         LDAPReferralException(const LDAPUrlList& urls);
23         ~LDAPReferralException();
24         const LDAPUrlList& getUrls();
25 };
26
27 #endif //LDAP_REFERRAL_EXCEPTION_H