JythonOneTimeRunner runner = (JythonOneTimeRunner) runnerClass
.newInstance();
runner.run(script, arguments);
} catch (ClassNotFoundException e) {
throw new XBayaRuntimeException(ErrorMessages.UNEXPECTED_ERROR, e);
} catch (InstantiationException e) {
throw new XBayaRuntimeException(ErrorMessages.UNEXPECTED_ERROR, e);
} catch (IllegalAccessException e) {
throw new XBayaRuntimeException(ErrorMessages.UNEXPECTED_ERROR, e);
} finally {
loader.cleanUp();
}
}