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

com.aventstack.chaintest.util.ExceptionsUtil Maven / Gradle / Ivy

The newest version!
package com.aventstack.chaintest.util;

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

public class ExceptionsUtil {

    public static String readStackTrace(final Throwable e) {
        final StringWriter sw = new StringWriter();
        e.printStackTrace(new PrintWriter(sw));
        return sw.toString();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy