aboutsummaryrefslogtreecommitdiff
path: root/cs-dotnet/src/gatsexception.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs-dotnet/src/gatsexception.cs')
-rw-r--r--cs-dotnet/src/gatsexception.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/cs-dotnet/src/gatsexception.cs b/cs-dotnet/src/gatsexception.cs
new file mode 100644
index 0000000..ea665d0
--- /dev/null
+++ b/cs-dotnet/src/gatsexception.cs
@@ -0,0 +1,12 @@
1using System;
2
3namespace Com.Xagasoft.Gats
4{
5 public class GatsException : Exception
6 {
7 public GatsException( String sName ) :
8 base( sName )
9 {
10 }
11 }
12}