diff options
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 | } | ||