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

org.gemini4j.utils.UrlUtils Maven / Gradle / Ivy

The newest version!
package org.gemini4j.utils;

import java.net.MalformedURLException;
import java.net.URL;

public final class UrlUtils {
    private UrlUtils() {
    }

    public static URL safeToUrl(final String url) {
        try {
            return new URL(url);
        } catch (final MalformedURLException e) {
            throw new IllegalArgumentException("Invalid URL provided", e);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy