00001 using System; 00002 00003 namespace StephenAshley.Biostatistics 00004 { 00011 class BiostatisticsException : Exception 00012 { 00018 public BiostatisticsException(string sMessage) : this(sMessage, null) { } 00019 00026 public BiostatisticsException(string sMessage, Exception exceptionInner) 00027 : base(sMessage, exceptionInner) 00028 { 00029 } 00030 } 00031 }