git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3528 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2009-04-22 20:17:22 +00:00
parent e7e1ed4150
commit d7e32cdceb
3 changed files with 3 additions and 10 deletions

View File

@ -11,19 +11,15 @@
package com.ibm.wala.ipa.cha;
/**
* Exception class that indicates that construction of class hierarchy has been
* cancelled by a progress monitor.
*
* @author egeay
* Exception class that indicates that construction of class hierarchy has been cancelled by a progress monitor.
*/
public final class CancelCHAConstructionException extends ClassHierarchyException {
private static final long serialVersionUID = -1987107302523285889L;
public CancelCHAConstructionException() {
super("class hierarchy construction was cancelled");
super("class hierarchy construction was cancelled");
}
}

View File

@ -13,7 +13,7 @@ package com.ibm.wala.ipa.cha;
import com.ibm.wala.util.warnings.WalaException;
/**
* @author sfink
* An exception that means something went wrong when constructing a {@link ClassHierarchy}.
*
*/
public class ClassHierarchyException extends WalaException {

View File

@ -11,10 +11,7 @@
package com.ibm.wala.util.warnings;
/**
*
* An exception to raise for some WALA failure
*
* @author sfink
*/
public class WalaException extends Exception {