All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dooapp.gaedo.prevalence.space.basic.ConsistencyException Maven / Gradle / Ivy

Go to download

A gaedo-inspired prevalence layer and the associated service, for making the most gaedo-efficient use of that layer

There is a newer version: 1.0.16
Show newest version
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