KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > def > Rethrow


1 package org.jbpm.bpel.def;
2
3 /**
4  * The rethrow activity is used exclusively at fault handlers to rethrow the
5  * original fault.
6  * @author Juan Cantú
7  * @version $Revision: 1.2 $ $Date: 2005/05/31 00:49:53 $
8  */

9 public class Rethrow extends Activity {
10
11   private static final long serialVersionUID = 1L;
12
13   /**{@inheritDoc}*/
14   public void accept(BpelVisitor visitor) {
15     visitor.visit(this);
16   }
17 }
18
Popular Tags