Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer
In directory sc8-pr-cvs1:/tmp/cvs-serv17026
Modified Files:
Page.java
Log Message:
Remove 'oops' from thrown ParserExceptions.
Index: Page.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer/Page.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** Page.java 10 Sep 2003 03:38:18 -0000 1.13
--- Page.java 21 Sep 2003 18:22:39 -0000 1.14
***************
*** 107,111 ****
catch (IOException ioe)
{
! throw new ParserException ("oops", ioe);
}
try
--- 107,111 ----
catch (IOException ioe)
{
! throw new ParserException (ioe.getMessage (), ioe);
}
try
***************
*** 115,119 ****
catch (IOException ioe)
{
! throw new ParserException ("oops2", ioe);
}
mIndex = new PageIndex (this);
--- 115,119 ----
catch (IOException ioe)
{
! throw new ParserException (ioe.getMessage (), ioe);
}
mIndex = new PageIndex (this);
|