Re: [Clirr-devel] CVS: clirr/src/java/net/sf/clirr/framework CheckerException.java,NONE,1.1
Status: Alpha
Brought to you by:
lkuehne
From: <lak...@t-...> - 2004-06-11 04:48:55
|
Simon Kitching wrote: >Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/framework >In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2826/net/sf/clirr/framework > >Added Files: > CheckerException.java >Log Message: >Add a new exception type to be used for reporting failures of the >checking process. Modify Checker.java to throw this exception rather >than an ant.BuildException instance on failure. > > >--- NEW FILE --- >[...] > public CheckerException(String msg, Throwable t) > { > super(msg, t); > > That super-constructor was not available in JDK 1.3. Introducing a dependency on 1.4 is OK with me, just wanted to make sure that it doesn't go unnoticed. Lars |