com.github.andyshao.util.stream.RuntimeExceptionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
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 extends RuntimeException> DEFAULT = RuntimeException::new;
/**
* exception factory
* @param e previous exception
* @return a new exception
*/
T build(Throwable e);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy