// convert / to .:
classString = classString.replaceAll("/", ".");
getCustomClassLoader().loadClass(classString);
} catch (MalformedURLException e) {
throw new RunnerException("Malformed URL Exception", e);
} catch (ClassNotFoundException e) {
throw new RunnerException("Class not found exception", e);
}
}
};
DirectoryIterator directoryIterator = new DirectoryIterator(Pattern.compile(".*\\.class"), runnerForFile);