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

com.alon.spring.crud.api.exceptionhandler.ExceptionUtils Maven / Gradle / Ivy

Go to download

Fornece implementação básica e expansível para criação API's CRUD com Spring Boot e Spring Data JPA.

There is a newer version: 1.0.9
Show newest version
package com.alon.spring.crud.api.exceptionhandler;

public class ExceptionUtils {

	public static Throwable getRootCause(Throwable throwable) {
		
		if (throwable.getCause() != null)
			return getRootCause(throwable.getCause());
		
		return throwable;
		
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy