* @param cellID The cell which launched the app.
* @param exitValue The exit value of the app.
*/
public void appExitted (CellID cellID, int exitValue) {
getProviderCellsLaunched().remove(cellID);
CellMO cell = CellManagerMO.getCell(cellID);
if (cell != null) {
if (!(cell instanceof AppConventionalCellMO)) {
logger.warning("Cell to whom we are reporting app exit is not an AppConventionalMO");
}
((AppConventionalCellMO)cell).appExitted(exitValue);