View Javadoc
1 package org.smartcomps.twister.engine.exception; 2 3 /*** 4 * thrown when an execution context fails executing or completing itself. When 5 * this esception is thrown the global transaction shouldn't be rolled back so 6 * that previous execution context execution is not rolled back too. 7 */ 8 public class ExecutionException extends EngineRuntimeException { 9 10 public ExecutionException(String s) { 11 super(s); 12 } 13 14 public ExecutionException(String s, Throwable throwable) { 15 super(s, throwable); 16 } 17 18 public ExecutionException(Throwable throwable) { 19 super(throwable); 20 } 21 }

This page was automatically generated by Maven