using System;
using LibGit2Sharp.Core;
namespace LibGit2Sharp
{
///
/// 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.
///
[Serializable]
public class CheckoutConflictException : MergeConflictException
{
///
/// Initializes a new instance of the class.
///
public CheckoutConflictException()
{ }
internal CheckoutConflictException(string message, GitErrorCode code, GitErrorCategory category)
: base(message, code, category)
{ }
}
}