public void runBeforeProcess() throws GroovyScriptExecutionException {
try {
Statement withBeforeProcess = withBeforeProcess(NullStatement.getInstance());
withBeforeProcess.evaluate();
} catch (Throwable t) {
throw new GroovyScriptExecutionException("Exception occurs in @BeforeProcess block.", t);
}
}