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

org.javabuilders.DuplicateAliasException Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package org.javabuilders;

/**
 * Indicates that a duplicate alias was encountered when attempting to register
 * a type with a builder
 * @author Jacek Furmankiewicz
 *
 */
@SuppressWarnings("serial")
public class DuplicateAliasException extends RuntimeException {

	/**
	 * @param message Message
	 */
	public DuplicateAliasException(String message) {
		super(message);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy