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