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

io.redskap.swagger.brake.util.ExceptionUtils Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package io.redskap.swagger.brake.util;

import java.util.Optional;

public abstract class ExceptionUtils {
    public static  Optional findInChain(Throwable throwable, Class type) {
        return org.apache.commons.lang3.exception.ExceptionUtils.getThrowableList(throwable)
            .stream()
            .filter(type::isInstance)
            .findFirst().map(type::cast);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy