com.cemiltokatli.jurl.exception.MalformedHttpURLException 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 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