Files
EmailBill/Application/Exceptions/NotFoundException.cs
SunCheng d052ae5197 fix
2026-02-10 17:49:19 +08:00

12 lines
276 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Application.Exceptions;
/// <summary>
/// 资源未找到异常对应HTTP 404 Not Found
/// </summary>
/// <remarks>
/// 用于查询的资源不存在等场景
/// </remarks>
public class NotFoundException(string message) : ApplicationException(message)
{
}