9 lines
170 B
C#
9 lines
170 B
C#
namespace Tiku.Api.Controllers;
|
|
|
|
public sealed class TenantNotFoundException : Exception
|
|
{
|
|
public TenantNotFoundException() : base("Tenant not found.")
|
|
{
|
|
}
|
|
}
|