Files
git-tfs/GitTfs/Core/GitCommandException.cs
T
2009-07-02 16:21:26 -04:00

16 lines
317 B
C#

using System;
using System.Diagnostics;
namespace Sep.Git.Tfs.Core
{
public class GitCommandException : Exception
{
public Process Process { get; set; }
public GitCommandException(string message, Process process) : base(message)
{
Process = process;
}
}
}