home *** CD-ROM | disk | FTP | other *** search
- package com.ms.xml.parser;
-
- public class ParseException extends Exception {
- public int line;
- public int column;
- public Object owner;
-
- public ParseException() {
- }
-
- public ParseException(String var1) {
- super(var1);
- this.line = this.column = 0;
- this.owner = null;
- }
-
- public ParseException(String var1, int var2, int var3, Object var4) {
- super(var1);
- this.line = var2;
- this.column = var3;
- this.owner = var4;
- }
- }
-