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

com.cemiltokatli.jurl.exception.HttpURLParseError Maven / Gradle / Ivy

Go to download

JURL is a Java URL builder library that allows you to create URLs with different schemes without dealing with string building or concatenation.

The newest version!
package com.cemiltokatli.jurl.exception;

/**
 * Thrown to indicate that the Http(s) URL string cannot be built from scratch because its building
 * has already been started or it has been created by parsing a string.
 */
public class HttpURLParseError extends Error {
    /**
     * Creates a new HttpURLParseError object with the specified detail message.
     *
     * @param message   the detail message
     */
    public HttpURLParseError(String message){
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy