Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MergeConflictException.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edcd5ebb7748ab547dfc330da3d4e4bc943303f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace LibGit2Sharp
{
    /// <summary>
    /// The exception that is thrown when a checkout cannot be performed
    /// because of a conflicting change staged in the index, or unstaged
    /// in the working directory.
    /// </summary>
    [Serializable]
    [Obsolete("This type will be removed in the next release. Please use CheckoutConflictException instead.")]
    public class MergeConflictException : CheckoutConflictException
    {
    }
}