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

com.moesif.helpers.ExceptionUtils Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.moesif.helpers;

public class ExceptionUtils {
    @SuppressWarnings("unchecked")
    public static  void propagateIfInstanceOf(
            Throwable t,
            Class type)
            throws T {
        if (type.isInstance(t)) {
            throw (T) t;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy