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);
}
}
- Re: ClassLoader Bruno Marquie
- Re: ClassLoader Nicolas Delsaux
- Re: ClassLoader Bruno Marquie
- Re: ClassLoader Nicolas Delsaux
- Re: ClassLoader Bruno Marquie
- Re: ClassLoader Nicolas Delsaux
- Re: ClassLoader Bruno Marquie
- Re: ClassLoader Laurent Martelli
- Re: ClassLoader Bruno Marquie
- Re: ClassLoader Bruno Marquie
- JavaOne 2003 Bruno Marquie
- JavaOne 2003 Cedric Beust
- Re: JavaOne 2003 Alexis Moussine-Pouchkine
- Re: JavaOne 2003 Cedric Beust
