using System; namespace FDK { class FDKException : Exception { public FDKException() : base() { } public FDKException( string msg ) : base( msg ) { } public FDKException( string msg, Exception inner ) : base( msg, inner ) { } } }