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

org.oiue.tools.exception.ExceptionUtil Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/**
 * 
 */
package org.oiue.tools.exception;

/**
 * @author every
 *
 */
public class ExceptionUtil {
	public static String getCausedBySrcMsg(Throwable e){
		return (e.getCause()==null)?e.getMessage():getCausedBySrcMsg(e.getCause());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy