Package metrics4Asterisk.parse.exception

Examples of metrics4Asterisk.parse.exception.NoEndEventException


     * @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();
        }
    }
View Full Code Here

TOP

Related Classes of metrics4Asterisk.parse.exception.NoEndEventException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.