mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 20:12:51 +08:00
13 lines
430 B
C#
13 lines
430 B
C#
namespace NetAdmin.Infrastructure.Exceptions;
|
|
|
|
/// <summary>
|
|
/// 无效输入异常
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// 参数格式错误、内容校验错误等
|
|
/// </remarks>
|
|
#pragma warning disable RCS1194
|
|
public sealed class NetAdminInvalidInputException(string message = null, Exception innerException = null)
|
|
: NetAdminException(ErrorCodes.InvalidInput, message, innerException)
|
|
#pragma warning restore RCS1194
|
|
{ } |