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

ClovershellException.cs « Clovershell - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffa13e0735fd7d59b576d900ed34d7ef862eba12 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace com.clusterrr.clovershell
{
    public class ClovershellException : Exception
    {
        public ClovershellException(string message) : base(message) { }
    }
}