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

com.regnosys.granite.projector.util.ExceptionUtils Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.61
Show newest version
package com.regnosys.granite.projector.util;

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

public class ExceptionUtils {

	public static String getStackTraceAsString(Exception e) {
		StringWriter sw = new StringWriter();
		PrintWriter pw = new PrintWriter(sw);
		e.printStackTrace(pw);
		return sw.toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy