package net.sourceforge.pain.util;
/**
* Set of formatiing utils.
*/
public class FormatUtils {
private FormatUtils(){}
public static String formatStacktrace(Exception e) {
return "{RError!: " + e.getClass().getName() + ":" + e.getMessage() + "\n{w" + ClassUtils.getStackTrace(e) + "{x";
}
}