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

com.github.olaaronsson.process.util.ThrowableUtils Maven / Gradle / Ivy

package com.github.olaaronsson.process.util;

public class ThrowableUtils {
	private ThrowableUtils() {}

	public static String getTopStackInfo(Throwable t) {
		return new StringBuilder(t.getStackTrace()[0].getClassName()).append(".").append(t.getStackTrace()[0].getMethodName()).append(".").append(t.getStackTrace()[0].getLineNumber()).toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy