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

6 lines
176 B
C#

namespace Tiku.Application.Scoreline;
public sealed class ScorelineQueryException(string message, string code) : Exception(message)
{
public string Code { get; } = code;
}