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

com.ckjava.utils.ExceptionUtils Maven / Gradle / Ivy

package com.ckjava.utils;

public class ExceptionUtils {

	/**
	 * 获取 Exception 信息
	 * 
	 * @param e Throwable 对象
	 * @return String 关于异常的简单描述
	 */
	public static String getExceptionMsg(Throwable e) {
		StringBuilder msg = new StringBuilder();
		msg.append("Exception:").append(e.getClass().getName()).append(",Message:").append(e.getMessage());
		return msg.toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy