home *** CD-ROM | disk | FTP | other *** search
/ Online Today 2000 January / Onto0100.iso / pc / JAVA / MSJAVX86.EXE / xmldso.cab / com / ms / xml / parser / ParseException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-05  |  498 b   |  24 lines

  1. package com.ms.xml.parser;
  2.  
  3. public class ParseException extends Exception {
  4.    public int line;
  5.    public int column;
  6.    public Object owner;
  7.  
  8.    public ParseException() {
  9.    }
  10.  
  11.    public ParseException(String var1) {
  12.       super(var1);
  13.       this.line = this.column = 0;
  14.       this.owner = null;
  15.    }
  16.  
  17.    public ParseException(String var1, int var2, int var3, Object var4) {
  18.       super(var1);
  19.       this.line = var2;
  20.       this.column = var3;
  21.       this.owner = var4;
  22.    }
  23. }
  24.