home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Java / CFJava.cab / CFJavaRuntime.cab / netscape / application / HTMLParsingException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-10-01  |  506 b   |  18 lines

  1. package netscape.application;
  2.  
  3. public class HTMLParsingException extends Exception {
  4.    int lineNumber = -1;
  5.  
  6.    private HTMLParsingException() {
  7.    }
  8.  
  9.    public HTMLParsingException(String var1, int var2) {
  10.       super(var1);
  11.       this.lineNumber = var2;
  12.    }
  13.  
  14.    public int lineNumber() {
  15.       return this.lineNumber;
  16.    }
  17. }
  18.