br.com.anteros.nosql.persistence.mongodb.query.CriteriaException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-NoSql-Persistence-MongoDB Show documentation
Show all versions of Anteros-NoSql-Persistence-MongoDB Show documentation
Anteros NoSQL Persistence MongoDB.
package br.com.anteros.nosql.persistence.mongodb.query;
public class CriteriaException extends RuntimeException {
public CriteriaException() {
super();
}
public CriteriaException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public CriteriaException(String message, Throwable cause) {
super(message, cause);
}
public CriteriaException(String message) {
super(message);
}
public CriteriaException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy