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

org.fluentjdbc.util.ExceptionUtil Maven / Gradle / Ivy

There is a newer version: 0.5.3
Show newest version
package org.fluentjdbc.util;

import javax.annotation.ParametersAreNonnullByDefault;

@ParametersAreNonnullByDefault
public class ExceptionUtil {

    public static RuntimeException softenCheckedException(Exception e) {
        return softenHelper(e);
    }

    @SuppressWarnings("unchecked")
    private static  T softenHelper(Exception e) throws T {
        throw (T)e;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy