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

com.cemiltokatli.jurl.exception.MalformedHttpURLException 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 a malformed URL has occurred. Either no legal protocol could be found in a specification string or
 * the string could not be parsed.
 */
public class MalformedHttpURLException extends Exception {
    /**
     * Creates a new MalformedHttpURLException object with the specified detail message.
     *
     * @param message   the detail message
     */
    public MalformedHttpURLException(String message){
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy