Inherited CaptchaException from UserFriendlyException

pull/15039/head
malik masis 3 years ago
parent bc366fb5af
commit ed14c5c61c

@ -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…
Cancel
Save