mirror of https://github.com/abpframework/abp.git
Browse Source
Remove legacy serialization feature `Exception.Exception(SerializationInfo, StreamingContext)` which is `obsolete`.pull/19215/head
committed by
GitHub
30 changed files with 47 additions and 229 deletions
@ -1,23 +1,11 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Runtime.Serialization; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp; |
|||
|
|||
namespace Volo.CmsKit.Domain.Volo.CmsKit.Pages; |
|||
|
|||
[Serializable] |
|||
public class MultipleHomePageException : BusinessException |
|||
{ |
|||
public MultipleHomePageException() |
|||
{ |
|||
Code = CmsKitErrorCodes.Pages.MultipleHomePage; |
|||
} |
|||
|
|||
public MultipleHomePageException(SerializationInfo serializationInfo, StreamingContext context) |
|||
: base(serializationInfo, context) |
|||
{ |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue