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

com.peterphi.std.guice.common.stringparsing.URLTypeConverter Maven / Gradle / Ivy

There is a newer version: 9.2.0
Show newest version
package com.peterphi.std.guice.common.stringparsing;

import java.net.MalformedURLException;
import java.net.URL;

class URLTypeConverter
{
	public Object convert(String value)
	{
		try
		{
			return new URL(value);
		}
		catch (MalformedURLException e)
		{
			throw new IllegalArgumentException("Cannot parse URL: " + value, e);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy