All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aspire.nm.component.commonUtil.log.ThrowableUtil Maven / Gradle / Ivy

package com.aspire.nm.component.commonUtil.log;

import java.io.PrintWriter;
import java.io.StringWriter;


public class ThrowableUtil {


    public static String toString(Throwable t){
        t.printStackTrace();
        StringWriter sw = new StringWriter();
        t.printStackTrace(new PrintWriter(sw, true));
        return sw.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy