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

FelException.cs « FelLib - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8a8eef8ea1dfaae22d1c3e5d3bb12ecc89c8ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace com.clusterrr.FelLib
{
    public class FelException : Exception
    {
        public FelException(string message) : base(message)
        {
        }
    }
}