namespace DS.Module.Core.Exceptions; public class DSAppException : System.Exception { public DSAppException() { } public DSAppException(string message) : base(message) { } public DSAppException(string message, System.Exception innerException) : base(message, innerException) { } }