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

SkipException.cs « TestHelpers « LibGit2Sharp.Tests - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1df39d957da64c2d1651f3dbfb011e1d86fa1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace LibGit2Sharp.Tests.TestHelpers
{
    class SkipException : Exception
    {
        public SkipException(string reason)
        {
            Reason = reason;
        }

        public string Reason { get; set; }
    }
}