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

com.wizzdi.dynamic.annotations.service.cn.xdean.jex.ExceptionUtil Maven / Gradle / Ivy

There is a newer version: 4.0.9
Show newest version
package com.wizzdi.dynamic.annotations.service.cn.xdean.jex;

public class ExceptionUtil {
	static  T uncheck(ThrowingSupplier supplier) {
		try {
			return supplier.supply();
		} catch (Throwable e) {
			throw new RuntimeException(e);
		}
	}

	static  void uncheck(ThrowingAction action) {
		try {
			action.apply();
		} catch (Throwable e) {
			throw new RuntimeException(e);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy