[Clirr-devel] CVS: clirr/core/src/java/net/sf/clirr/core CheckerException.java, 1.4, 1.5
Status: Alpha
Brought to you by:
lkuehne
From: <lk...@us...> - 2007-05-19 12:18:11
|
Update of /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv18230/src/java/net/sf/clirr/core Modified Files: CheckerException.java Log Message: CheckerException is no longer a runtime exception, fixes TODO comment in CheckerException source code Index: CheckerException.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/CheckerException.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- CheckerException.java 26 Aug 2005 05:35:53 -0000 1.4 +++ CheckerException.java 19 May 2007 12:18:06 -0000 1.5 @@ -30,7 +30,7 @@ * Unchecked exceptions are used for errors that are due to bugs within * clirr code (assertion-violation type problems). */ -public class CheckerException extends RuntimeException // TODO: revert this back to Exception to match the class doc above +public class CheckerException extends Exception { public CheckerException(String msg) { |