if (startIt) {
myContainer.powerUpLocalAgent(agentID);
}
}
catch(ClassNotFoundException cnfe) {
throw new IMTPException("Class " + className + " for agent " + agentID + " not found", cnfe);
}
catch(InstantiationException ie) {
throw new IMTPException("Class " + className + " for agent " + agentID + " cannot be instantiated", ie);
}
catch(IllegalAccessException iae) {
throw new IMTPException("Illegal access exception in createAgent()", iae);
}
}