Author: gavin.king(a)jboss.com
Date: 2009-10-25 20:33:48 -0400 (Sun, 25 Oct 2009)
New Revision: 4318
Modified:
api/trunk/cdi/src/main/java/javax/enterprise/context/ContextNotActiveException.java
Log:
simplify, since it did not really give any extra information
Modified:
api/trunk/cdi/src/main/java/javax/enterprise/context/ContextNotActiveException.java
===================================================================
---
api/trunk/cdi/src/main/java/javax/enterprise/context/ContextNotActiveException.java 2009-10-26
00:26:45 UTC (rev 4317)
+++
api/trunk/cdi/src/main/java/javax/enterprise/context/ContextNotActiveException.java 2009-10-26
00:33:48 UTC (rev 4318)
@@ -19,15 +19,13 @@
/**
- * A {@link ContextNotActiveException} is thrown if at a particular point in the
- * execution of the program the context is inactive with respect to the current
- * thread. When the context is inactive, any invocation of the get() from the
- * current thread upon the Context object for that scope results in a
- * ContextNotActiveException.
+ * <p>Indicates that a context is not active.</p>
*
+ * @see javax.enterprise.context.spi.Context
*
* @author Pete Muir
* @author Shane Bryzak
+ * @author Gavin King
*/
public class ContextNotActiveException extends ContextException