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

com.github.quartzwebui.utils.ExceptionUtils Maven / Gradle / Ivy

The newest version!
/**
 * Licensed under the Apache License, Version 2.0 (the "License");
 */
package com.github.quartzwebui.utils;

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

/**
 * @author quxiucheng [[email protected]]
 */
public class ExceptionUtils {

    public static String getStackTrace(Throwable ex) {
        StringWriter buf = new StringWriter();
        ex.printStackTrace(new PrintWriter(buf));
        return buf.toString();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy