blob: 10c474fe808409510d5e9cbb149bf5ddb24d1186 [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 error: EndOfFile.
*/
public class SyncbaseEndOfFileException extends SyncbaseException {
SyncbaseEndOfFileException(String message, Exception cause) {
super(message, cause);
}
}