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

com.venky.core.util.ExceptionUtil Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.venky.core.util;

/**
 *
 * @author venky
 */
public class ExceptionUtil {
    public static Throwable getRootCause(Throwable in){
    	return getEmbeddedException(in,Throwable.class);
    }
    public static Throwable getEmbeddedException(Throwable in, Class instanceOfThisClass){
        Throwable ret = null ;
        Throwable ex = in;
        while (ex != null ){
        	if (instanceOfThisClass.isInstance(ex)){
        		ret = ex;
        	}
        	ex = ex.getCause();
        }
        return ret;
    	
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy