aboutsummaryrefslogtreecommitdiff
path: root/cs-dotnet/src/gatsexception.cs
blob: ea665d0e9a2fb3a6b99ae41622a1dc91449f6f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Com.Xagasoft.Gats
{
    public class GatsException : Exception
    {
        public GatsException( String sName ) :
            base( sName )
        {
        }
    }
}