Package org.voltdb.compiler

Examples of org.voltdb.compiler.CodeBlockCompilerException


    public Class<?> parseCodeBlock(final String codeBlock, final String classNameForCodeBlock) {
        Class<?> parsedClazz;
        try {
            parsedClazz = gcl.parseClass(codeBlock, classNameForCodeBlock + ".groovy");
        } catch (CompilationFailedException e) {
            throw new CodeBlockCompilerException(e.getMessage());
        }
        return parsedClazz;
    }
View Full Code Here

TOP

Related Classes of org.voltdb.compiler.CodeBlockCompilerException

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.