payne
2024-04-23 8e8f631d985cb04c2a8b185101a33814a1e0bd4e
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)
        {
        }
    }
}