try {
// convert class information to byte array
ClassFile clas = (ClassFile)m_classMap.get(name);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
clas.writeFile(bos);
byte[] bytes = bos.toByteArray();
return defineClass(name, bytes, 0, bytes.length);
} catch (IOException e) {
throw new ClassNotFoundException