[jboss-cvs] JBossAS SVN: r64884 - projects/aop/trunk/aop/src/main/org/jboss/aop/advice/annotation.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Mon Aug 27 00:31:09 EDT 2007
Author: flavia.rainone at jboss.com
Date: 2007-08-27 00:31:09 -0400 (Mon, 27 Aug 2007)
New Revision: 64884
Removed:
projects/aop/trunk/aop/src/main/org/jboss/aop/advice/annotation/MultipleAdviceInfoException.java
Log:
[JBAOP-387] Useless exception removed
Deleted: projects/aop/trunk/aop/src/main/org/jboss/aop/advice/annotation/MultipleAdviceInfoException.java
===================================================================
--- projects/aop/trunk/aop/src/main/org/jboss/aop/advice/annotation/MultipleAdviceInfoException.java 2007-08-27 03:55:19 UTC (rev 64883)
+++ projects/aop/trunk/aop/src/main/org/jboss/aop/advice/annotation/MultipleAdviceInfoException.java 2007-08-27 04:31:09 UTC (rev 64884)
@@ -1,31 +0,0 @@
-package org.jboss.aop.advice.annotation;
-
-/**
- * Exception thrown when there is need to create more than one {@link
- * AnnotatedParameterAdviceInfo} to represent the same advice method.
- *
- * @author Flavia Rainone
- */
-class MultipleAdviceInfoException extends Exception
-{
-
- private static final long serialVersionUID = 1L;
-
- /**
- * Contains the total number of AdviceInfo instances needed to represent the advice
- * method that triggered this exception.
- */
- int totalInstances;
-
- /**
- * Contains information about all parameter annotations of the advice method that
- * triggered this exception.
- */
- int[][] annotations;
-
- public MultipleAdviceInfoException(int totalInstances, int[][] annotations)
- {
- this.totalInstances = totalInstances;
- this.annotations = annotations;
- }
-}
\ No newline at end of file
More information about the jboss-cvs-commits
mailing list