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

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'FelLib/FelException.cs')
-rw-r--r--FelLib/FelException.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/FelLib/FelException.cs b/FelLib/FelException.cs
new file mode 100644
index 00000000..b8a8eef8
--- /dev/null
+++ b/FelLib/FelException.cs
@@ -0,0 +1,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)
+ {
+ }
+ }
+}