* @throws NoEndEventException This will be thrown if the lastQueueAddTime is not 0.
*/
public void unInitTimes(long uninitTime, long origTime) throws NoEndEventException {
logger.debug("unInitTimes will stop at " + uninitTime + " if " + lastQueueAddTime + " != " + origTime);
if (lastQueueAddTime != 0L) {
throw new NoEndEventException();
}
}