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

com.github.napp.util.mass.DuplicateKeyException Maven / Gradle / Ivy

There is a newer version: 1.1.8
Show newest version
package com.github.napp.util.mass;

/**
 * @author Alexandru Bledea
 * @since Jul 14, 2013
 */
public class DuplicateKeyException extends Exception {

	/**
	 * @param key
	 */
	public DuplicateKeyException(Object key) {
		super("Duplicate key found: ".concat(String.valueOf(key)));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy