"alesj" wrote :
| | public Class<?> loadClass(String name)
| | {
| | try
| | {
| | return loadClass(null, name, true);
| | }
| | catch (ClassNotFoundException e)
| | {
| | return null;
| | }
| | }
Now I'm curious... why isn't ClassNotFoundException being thrown? The
ClassLoader.loadClass() API is clear about CNFE being thrown if a class can't be
found.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4269059#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...