
src.org.neodatis.btree.exception.BTreeNodeValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neodatis-odb Show documentation
Show all versions of neodatis-odb Show documentation
The NeoDatis Object Database
package org.neodatis.btree.exception;
public class BTreeNodeValidationException extends RuntimeException {
public BTreeNodeValidationException() {
super();
}
public BTreeNodeValidationException(String message, Throwable cause) {
super(message, cause);
}
public BTreeNodeValidationException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy