package anastore.server;

/**
 * Exception to indicate that a commit could not be performed due to a
 * conflict.
 */
public class CommitFailedException extends Exception {

    public CommitFailedException() {
        super();
    }

    public CommitFailedException(String s) {
        super(s);
    }
}
