mirror of https://github.com/abpframework/abp.git
1 changed files with 7 additions and 2 deletions
@ -1,10 +1,15 @@ |
|||
using System; |
|||
using System.Runtime.Serialization; |
|||
using Volo.Abp; |
|||
|
|||
namespace Volo.CmsKit.Public.Application.Security.VoloCaptcha; |
|||
|
|||
public class CaptchaException : Exception |
|||
public class CaptchaException : UserFriendlyException |
|||
{ |
|||
public CaptchaException(string message) : base(message) |
|||
{ |
|||
} |
|||
|
|||
public CaptchaException(SerializationInfo serializationInfo, StreamingContext context) : base(serializationInfo, context) |
|||
{ |
|||
} |
|||
} |
|||
Loading…
Reference in new issue