|
|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
using System;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using Volo.Abp;
|
|
|
|
|
|
|
|
|
|
namespace Volo.CmsKit.Tags
|
|
|
|
|
@ -6,7 +7,13 @@ namespace Volo.CmsKit.Tags
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class EntityNotTaggableException : BusinessException
|
|
|
|
|
{
|
|
|
|
|
public EntityNotTaggableException(string code = null, string message = null, string details = null, Exception innerException = null, Microsoft.Extensions.Logging.LogLevel logLevel = Microsoft.Extensions.Logging.LogLevel.Warning) : base(code, message, details, innerException, logLevel)
|
|
|
|
|
public EntityNotTaggableException(
|
|
|
|
|
string code = null,
|
|
|
|
|
string message = null,
|
|
|
|
|
string details = null,
|
|
|
|
|
Exception innerException = null,
|
|
|
|
|
LogLevel logLevel = LogLevel.Warning)
|
|
|
|
|
: base(code, message, details, innerException, logLevel)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|