mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
687 B
26 lines
687 B
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT license.
|
|
|
|
#pragma warning disable 0162
|
|
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FASTER.core
|
|
{
|
|
/// <summary>
|
|
/// Exception thrown when commit fails
|
|
/// </summary>
|
|
public class CommitFailureException : Exception
|
|
{
|
|
/// <summary>
|
|
/// Commit info and next commit task in chain
|
|
/// </summary>
|
|
public LinkedCommitInfo LinkedCommitInfo { get; private set; }
|
|
|
|
internal CommitFailureException(LinkedCommitInfo linkedCommitInfo, string message)
|
|
: base(message)
|
|
=> LinkedCommitInfo = linkedCommitInfo;
|
|
}
|
|
}
|