From: Pavel V. <va...@us...> - 2002-08-26 19:30:17
|
Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi In directory usw-pr-cvs1:/tmp/cvs-serv19874 Modified Files: Bootstrap.java Log Message: fix in loaded class name Index: Bootstrap.java =================================================================== RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/Bootstrap.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Bootstrap.java 21 Aug 2002 13:04:47 -0000 1.2 --- Bootstrap.java 26 Aug 2002 19:30:14 -0000 1.3 *************** *** 57,62 **** try { // FIXME manager = (ConnectorManager) Class.forName( ! "net.sourceforge.javaprofiler.jpiimpl.ConnectorManagerImpl").newInstance(); ! } catch ( Exception e) {} return manager; } --- 57,70 ---- try { // FIXME manager = (ConnectorManager) Class.forName( ! "net.sourceforge.javaprofiler.jpiimpl.connect.ConnectorManagerImpl").newInstance(); ! } catch ( ClassNotFoundException e) { ! throw new RuntimeException( "Error in finding class ConnectorManager: " ! + e.getMessage() ); ! } catch ( InstantiationException e ) { ! throw new RuntimeException( "Error in intatitation ConnectorManager: " ! + e.getMessage() ); ! } catch ( IllegalAccessException e ) { ! throw new RuntimeException( "IllegalAccessException" + e.getMessage() ); ! } return manager; } *************** *** 65,68 **** --- 73,79 ---- /* * $Log$ + * Revision 1.3 2002/08/26 19:30:14 vachis + * fix in loaded class name + * * Revision 1.2 2002/08/21 13:04:47 vachis * VirtualMachineManager renamed to ConnectorManager |