com.dooapp.gaedo.prevalence.space.basic.ConsistencyException 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.basic;
import com.dooapp.gaedo.prevalence.space.PrevalenceException;
/**
* Exception thrown when, due to a command exception, space is no more consistent
* @author ndx
*
*/
public class ConsistencyException extends PrevalenceException {
public ConsistencyException() {
super();
}
public ConsistencyException(String message, Throwable cause) {
super(message, cause);
}
public ConsistencyException(String message) {
super(message);
}
public ConsistencyException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy