213214215216217218219
public Action returnValue(Object result) { return new ReturnValueAction(result); } public Action throwException(Throwable throwable) { return new ThrowAction(throwable); }
274275276277278279280
public static Action returnValue(Object result) { return new ReturnValueAction(result); } public static Action throwException(Throwable throwable) { return new ThrowAction(throwable); }