namespace Govor.Domain; /// /// Base exception class for Govor solutions /// public class GovorCoreException : Exception { public GovorCoreException() { } public GovorCoreException(string message) : base(message) { } public GovorCoreException(string message, Exception innerException) : base(message, innerException) { } }