Package org.cafesip.jiplet.utils

Examples of org.cafesip.jiplet.utils.StringBufferOutputStream


     * @param exception the exception object.
     * @return string containing the stack trace.
     */
    public static String getStackTrace(Throwable exception)
    {      
        StringBufferOutputStream strbuf = new StringBufferOutputStream();
        exception.printStackTrace(new PrintStream(strbuf));       
        return strbuf.toString();
    }
View Full Code Here

TOP

Related Classes of org.cafesip.jiplet.utils.StringBufferOutputStream

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.