com.fnklabs.draenei.orm.exception.MetadataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fnklabs-draenei Show documentation
Show all versions of fnklabs-draenei Show documentation
ORM for Cassandra but with distributed cache and analytics utils from package
package com.fnklabs.draenei.orm.exception;
public class MetadataException extends RuntimeException {
public MetadataException() {
super();
}
public MetadataException(String message) {
super(message);
}
public MetadataException(String message, Throwable cause) {
super(message, cause);
}
public MetadataException(Throwable cause) {
super(cause);
}
protected MetadataException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy