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

com.github.andyshao.util.stream.RuntimeExceptionFactory Maven / Gradle / Ivy

The newest version!
package com.github.andyshao.util.stream;

/**
 *
 * Title:
* Descript:
* Copyright: Copryright(c) May 27, 2019
* Encoding: UNIX UTF-8 * * @author Andy.Shao * @param exception type * */ @FunctionalInterface public interface RuntimeExceptionFactory { /**default factory*/ static RuntimeExceptionFactory DEFAULT = RuntimeException::new; /** * exception factory * @param e previous exception * @return a new exception */ T build(Throwable e); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy