diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-14 23:11:45 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-14 23:11:45 +0000 |
commit | 9d86cba840252b451c4b86d9ea16c821b6c97245 (patch) | |
tree | 2933bdc33347592633b721ff68840f177692ed96 /cs-dotnet/src/gatsexception.cs | |
parent | 630ae7ac1b172395777a0d4920055751226402f8 (diff) | |
download | libgats-9d86cba840252b451c4b86d9ea16c821b6c97245.tar.gz libgats-9d86cba840252b451c4b86d9ea16c821b6c97245.tar.bz2 libgats-9d86cba840252b451c4b86d9ea16c821b6c97245.tar.xz libgats-9d86cba840252b451c4b86d9ea16c821b6c97245.zip |
Started a nice, native .net implementation in C#
Diffstat (limited to '')
-rw-r--r-- | cs-dotnet/src/gatsexception.cs | 12 |
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 @@ | |||
1 | using System; | ||
2 | |||
3 | namespace Com.Xagasoft.Gats | ||
4 | { | ||
5 | public class GatsException : Exception | ||
6 | { | ||
7 | public GatsException( String sName ) : | ||
8 | base( sName ) | ||
9 | { | ||
10 | } | ||
11 | } | ||
12 | } | ||