com.cemiltokatli.jurl.exception.HttpURLParseError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-url-builder Show documentation
Show all versions of java-url-builder Show documentation
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