Files
tiku-backend.net/Tiku.Api/Controllers/TenantNotFoundException.cs
xiong 3f5957d744
Some checks failed
ci / release-gate (push) Has been cancelled
feat(content): establish v2 learning delivery foundation
2026-08-06 09:52:18 +08:00

9 lines
170 B
C#

namespace Tiku.Api.Controllers;
public sealed class TenantNotFoundException : Exception
{
public TenantNotFoundException() : base("Tenant not found.")
{
}
}