com.dooapp.gaedo.prevalence.space.PrevalenceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gaedo-prevalence Show documentation
Show all versions of gaedo-prevalence Show documentation
A gaedo-inspired prevalence layer and the associated service, for making the most gaedo-efficient use of that layer
package com.dooapp.gaedo.prevalence.space;
import com.dooapp.gaedo.CrudServiceException;
public abstract class PrevalenceException extends CrudServiceException {
public PrevalenceException() {
super();
}
public PrevalenceException(String message, Throwable cause) {
super(message, cause);
}
public PrevalenceException(String message) {
super(message);
}
public PrevalenceException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy