openldap/contrib/ldapc++/src/LDAPReferralException.h
Ralf Haferkamp 1ab5360fee - some new Classes for sync. LDAP operations
- Classes for handling Controls
2000-10-03 18:50:44 +00:00

27 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