home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 August / PCO0897.ISO / browser / tonline / ie32.exe / IEXPLORE.CAB / CLASSES.ZIP / sun / net / www / http / UnauthorizedHttpRequestException.class (.txt) < prev   
Encoding:
Java Class File  |  1996-10-01  |  473 b   |  15 lines

  1. package sun.net.www.http;
  2.  
  3. import java.io.IOException;
  4. import java.net.URL;
  5.  
  6. public class UnauthorizedHttpRequestException extends IOException {
  7.    public URL url;
  8.    public HttpClient http;
  9.  
  10.    public UnauthorizedHttpRequestException(URL var1, HttpClient var2) {
  11.       this.url = var1;
  12.       this.http = var2;
  13.    }
  14. }
  15.