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

com.xxl.rpc.util.ThrowableUtil Maven / Gradle / Ivy

package com.xxl.rpc.util;

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

/**
 * @author xuxueli 2018-10-20 20:07:26
 */
public class ThrowableUtil {

    /**
     * parse error to string
     *
     * @param e
     * @return
     */
    public static String toString(Throwable e) {
        StringWriter stringWriter = new StringWriter();
        e.printStackTrace(new PrintWriter(stringWriter));
        String errorMsg = stringWriter.toString();
        return errorMsg;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy