mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 15:49:34 -05:00
28 lines
555 B
C
28 lines
555 B
C
|
|
/*
|
||
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
||
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
#ifndef LDAP_REFERRAL_EXCEPTION_H
|
||
|
|
#define LDAP_REFERRAL_EXCEPTION_H
|
||
|
|
|
||
|
|
#include <list>
|
||
|
|
#include "LDAPMessage.h"
|
||
|
|
#include "LDAPUrlList.h"
|
||
|
|
|
||
|
|
class LDAPUrlList;
|
||
|
|
|
||
|
|
class LDAPReferralException : public LDAPException{
|
||
|
|
|
||
|
|
private :
|
||
|
|
LDAPUrlList m_urlList;
|
||
|
|
|
||
|
|
public :
|
||
|
|
LDAPReferralException(const LDAPUrlList& urls);
|
||
|
|
~LDAPReferralException();
|
||
|
|
const LDAPUrlList& getUrls();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif //LDAP_REFERRAL_EXCEPTION_H
|