You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
447 B
13 lines
447 B
namespace Lion.AbpPro.NotificationManagement
|
|
{
|
|
public class NotificationManagementDomainException : BusinessException
|
|
{
|
|
public NotificationManagementDomainException(string code = null, string message = null, string details = null, Exception innerException = null,
|
|
LogLevel logLevel = LogLevel.Warning) : base(code, message, details,
|
|
innerException,
|
|
logLevel
|
|
)
|
|
{
|
|
}
|
|
}
|
|
}
|