protected ClassLoader createClassLoader(Method method) {
   try {
     return new URLClassLoader(ClassPathUtil.getClassPathURLs(CLASS_PATH), null);
   } catch (MalformedURLException murle) {
     throw new RuntimeException(murle);
   }
 }