throws ClassNotFoundException
{
// First try to load the class using the context class loader of the current thread
try {
TransletLoader loader = new TransletLoader();
return loader.loadTranslet(name);
}
catch (ClassNotFoundException e) {
// Then try to load the class using the default class loader.
return Class.forName(name);
}