This commit is contained in:
SunCheng
2026-02-10 17:49:19 +08:00
parent 3e18283e52
commit d052ae5197
104 changed files with 10369 additions and 3000 deletions

View File

@@ -0,0 +1,11 @@
namespace Application.Exceptions;
/// <summary>
/// 业务验证异常对应HTTP 400 Bad Request
/// </summary>
/// <remarks>
/// 用于参数验证失败、业务规则不满足等场景
/// </remarks>
public class ValidationException(string message) : ApplicationException(message)
{
}