
org.chronos.chronodb.api.exceptions.ChronoDBCommitMetadataRejectedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.chronos.chronodb.api Show documentation
Show all versions of org.chronos.chronodb.api Show documentation
Versioned data storage, embeddable and easy to use.
The newest version!
package org.chronos.chronodb.api.exceptions;
public class ChronoDBCommitMetadataRejectedException extends ChronoDBCommitException {
public ChronoDBCommitMetadataRejectedException() {
}
protected ChronoDBCommitMetadataRejectedException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public ChronoDBCommitMetadataRejectedException(final String message, final Throwable cause) {
super(message, cause);
}
public ChronoDBCommitMetadataRejectedException(final String message) {
super(message);
}
public ChronoDBCommitMetadataRejectedException(final Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy