com.dooapp.gaedo.prevalence.space.commands.CommandExecutionException 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.commands;
import com.dooapp.gaedo.prevalence.space.PrevalenceException;
public abstract class CommandExecutionException extends PrevalenceException {
public CommandExecutionException() {
}
public CommandExecutionException(String message, Throwable cause) {
super(message, cause);
}
public CommandExecutionException(String message) {
super(message);
}
public CommandExecutionException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy