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

com.github.paganini2008.devtools.BooleanFormatException Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.paganini2008.devtools;

/**
 * BooleanFormatException
 * 
 * @author Fred Feng
 * @version 1.0
 */
public class BooleanFormatException extends IllegalArgumentException {

	private static final long serialVersionUID = 503818756488609077L;

	public BooleanFormatException(String input) {
		super("Invalid format for input: '" + input + "'.");
	}

	public BooleanFormatException(char input) {
		this(String.valueOf(input));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy