public Class loadCompiledClass()

in src/main/java/org/apache/sling/commons/compiler/impl/CompilationResultImpl.java [78:84]


    public Class<?> loadCompiledClass(final String className)
    throws ClassNotFoundException {
        if ( errors != null ) {
            throw new ClassNotFoundException(className);
        }
        return this.classLoaderWriter.getClassLoader().loadClass(className);
    }