blob: 18b48d3d181f957fbd77af5908ef6602b6797e51 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncbase.exception;
/**
* Thrown in response to Vanadium errors: BadVersion, ConcurrentBatch, or UnknownBatch. The failing
* method may possibly succeed later if retried.
*/
public class SyncbaseRaceException extends SyncbaseException {
SyncbaseRaceException(String message, Exception cause) {
super(message, cause);
}
}