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

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

package com.cemiltokatli.jurl.exception;

/**
 * Thrown to indicate that one of mandatory fields -like a host name for a Http(s) URL-
 * could not be found.
 */
public class URLBuildException extends RuntimeException {
    /**
     * Creates a new URLBuildException object with the specified detail message.
     *
     * @param message   the detail message
     */
    public URLBuildException(String message){
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy