[Clirr-devel] CVS: clirr/src/java/net/sf/clirr/framework CheckerException.java,NONE,1.1
Status: Alpha
Brought to you by:
lkuehne
From: Simon K. <s_k...@us...> - 2004-06-11 00:02:35
|
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 --- ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility // Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ////////////////////////////////////////////////////////////////////////////// package net.sf.clirr.framework; /** * An exception class representing a failure during checking of the * specified jar files. * <p> * The Clirr coding conventions use checked exceptions (such as this one) * for errors whose cause is something external to the clirr library/app. * Unchecked exceptions are used for errors that are due to bugs within * clirr code (assertion-violation type problems). */ public class CheckerException extends Exception { public CheckerException(String msg) { super(msg); } public CheckerException(String msg, Throwable t) { super(msg, t); } } |