home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / naming / ldap / LdapReferralException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  571 b   |  24 lines

  1. package javax.naming.ldap;
  2.  
  3. import java.util.Hashtable;
  4. import javax.naming.Context;
  5. import javax.naming.NamingException;
  6. import javax.naming.ReferralException;
  7.  
  8. public abstract class LdapReferralException extends ReferralException {
  9.    private static final long serialVersionUID = -1668992791764950804L;
  10.  
  11.    protected LdapReferralException(String var1) {
  12.       super(var1);
  13.    }
  14.  
  15.    protected LdapReferralException() {
  16.    }
  17.  
  18.    public abstract Context getReferralContext() throws NamingException;
  19.  
  20.    public abstract Context getReferralContext(Hashtable var1) throws NamingException;
  21.  
  22.    public abstract Context getReferralContext(Hashtable var1, Control[] var2) throws NamingException;
  23. }
  24.