Files
tiku-backend.net/Tiku.Application/Backoffice/BackofficeException.cs
xiong c497a3ca8d
Some checks failed
ci / release-gate (push) Has been cancelled
清理代码
2026-08-03 12:31:39 +08:00

6 lines
189 B
C#

namespace Tiku.Application.Backoffice;
public sealed class BackofficeException(string message, string code) : InvalidOperationException(message)
{
public string Code { get; } = code;
}