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

io.continual.util.checks.Strings Maven / Gradle / Ivy

There is a newer version: 0.3.14
Show newest version
package io.continual.util.checks;

public class Strings
{
	private Strings(){
	}
	
	public static void throwIfEmpty ( String s, String msg )
	{
		if ( s == null || s.length () == 0 )
		{
			throw new IllegalArgumentException ( msg );
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy