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

src.org.neodatis.btree.exception.DuplicatedKeyException Maven / Gradle / Ivy

The newest version!
package org.neodatis.btree.exception;

public class DuplicatedKeyException extends BTreeException {

	public DuplicatedKeyException() {
		super();
	}

	public DuplicatedKeyException(String message, Throwable cause) {
		super(message, cause);
	}

	public DuplicatedKeyException(String message) {
		super(message);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy