dain 2004/01/21 19:51:53
Modified: modules/kernel/src/java/org/apache/geronimo/gbean GBean.java
Log:
Allow GBean doStop to throw Exception
Revision Changes Path
1.4 +2 -2
incubator-geronimo/modules/kernel/src/java/org/apache/geronimo/gbean/GBean.java
Index: GBean.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/kernel/src/java/org/apache/geronimo/gbean/GBean.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- GBean.java 22 Jan 2004 02:46:27 -0000 1.3
+++ GBean.java 22 Jan 2004 03:51:53 -0000 1.4
@@ -82,7 +82,7 @@
* Stops the target. This informs the GBean that it is about to
transition to the stopped state.
* @throws org.apache.geronimo.gbean.WaitingException if the target is
waiting for an external condition before it can fully stop
*/
- void doStop() throws WaitingException;
+ void doStop() throws WaitingException, Exception;
/**
* Fails the GBean. This informs the GBean that it is about to
transition to the failed state.