liuying
2024-04-23 0f4d83dcce5468b8dde3bc8e20e1c1a0203e4039
1
2
3
4
5
6
7
8
9
namespace Furion.Extras.Admin.NET.Util.LowCode.Front.Model
{
    public class NotFoundFrontException : Exception
    {
        public NotFoundFrontException(string message) : base(message)
        {
        }
    }
}