public static void propagateIfFatal()

in ttl-core/src/main/java/com/alibaba/ttl3/internal/util/Utils.java [67:76]


    public static void propagateIfFatal(@Nullable Throwable throwable) {
        if (throwable == null) return;

        if (throwable instanceof VirtualMachineError
                || throwable instanceof ThreadDeath
                || throwable instanceof InterruptedException
                || throwable instanceof LinkageError) {
            sneakyThrow(throwable);
        }
    }