Novell.Directory.Ldap.LdapReferralException.LdapReferralException C# (CSharp) Method

LdapReferralException() public method

Constructs a default exception with a specified string as additional information and an exception that indicates a failure to follow a referral. This excepiton applies only to synchronous operations and is thrown only on receipt of a referral when the referral was not followed.
public LdapReferralException ( System message, System arguments, System rootException ) : System
message System The additional error information. /// /// ///
arguments System The modifying arguments to be included in the /// message string. /// ///
rootException System An exception which caused referral following to fail. ///
return System
        public LdapReferralException(System.String message, System.Object[] arguments, System.Exception rootException)
            : base(message, arguments, LdapException.REFERRAL, null, rootException)
        {
            return ;
        }

Same methods

LdapReferralException::LdapReferralException ( ) : System
LdapReferralException::LdapReferralException ( System message ) : System
LdapReferralException::LdapReferralException ( System message, System arguments ) : System
LdapReferralException::LdapReferralException ( System message, System arguments, int resultCode, System serverMessage ) : System
LdapReferralException::LdapReferralException ( System message, System arguments, int resultCode, System serverMessage, System rootException ) : System
LdapReferralException::LdapReferralException ( System message, int resultCode, System serverMessage ) : System
LdapReferralException::LdapReferralException ( System message, int resultCode, System serverMessage, System rootException ) : System