plus exactement

public Class findClass(String pClassName) throws ClassNotFoundException {
Class aClass = null;
try {
System.out.println("Load Class:"+pClassName);
aClass = getPigClass(pClassName);
return aClass;
}
catch (Exception e) {
// We could not find the class, so indicate the problem with an exception
throw new ClassNotFoundException(pClassName);
}
}


Répondre à