Package com.liferay.portal.kernel.scripting

Examples of com.liferay.portal.kernel.scripting.ExecutionException


                                          final Map<String, Object> inputObjects,
                                          final Set<String> outputNames,
                                          final String script) throws ScriptingException {

        if (allowedClasses != null && !allowedClasses.isEmpty()) {
            throw new ExecutionException("Constrained execution not supported for Clojure");
        }

        final Callable<Map<String, Object>> callable = createCallableForScript(inputObjects, outputNames, script);

        return callAndWrapException(callable);
View Full Code Here

TOP

Related Classes of com.liferay.portal.kernel.scripting.ExecutionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.