home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161a.iso / handson / files / copyjava.exe / com / sun / java / swing / text / html / HTMLException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-02-26  |  554 b   |  19 lines

  1. package com.sun.java.swing.text.html;
  2.  
  3. class HTMLException extends Exception implements HTMLError {
  4.    int mcode;
  5.  
  6.    public HTMLException(int var1) {
  7.       this.mcode = var1;
  8.    }
  9.  
  10.    public HTMLException(int var1, String var2) {
  11.       super(var2);
  12.       this.mcode = var1;
  13.    }
  14.  
  15.    public int getErrorCode() {
  16.       return this.mcode;
  17.    }
  18. }
  19.