[Serializable]
	public class EmailException : Exception
	{
		public EmailException() : base(){}
		public EmailException(string message):base(message){}
		public EmailException(string message, Exception in):base(message,in){}
	}

		public SplitDataSet():this(null,null)
		{
		}

		public SplitDataSet(DataTable mainDt, DataSet childDataSet)
		{
			mainDataTable = mainDt;
			childTables = childDataSet;
		}

satya - Tuesday, May 01, 2007 2:54:40 PM

Odd the structure is

class a
{
    a():base(){}
    a(string b):this(){}
    a(int a): this("hello") {}
}