16 lines
317 B
C#
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;
|
|
}
|
|
}
|
|
}
|