Package org.jvnet.glassfish.comms.sipagent.model

Examples of org.jvnet.glassfish.comms.sipagent.model.ParserException


        SipMessage result = p.parseMessage(null, bb, null, null, null);
       
        theirLogger.finer("Created message: " + result);
        // fix for parser 'bug' it either returns null or throws an exception...
        if (result == null){
            throw new ParserException(
                "Resulting message after parsing was null");
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of org.jvnet.glassfish.comms.sipagent.model.ParserException

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.