您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

NotFoundException.cs 479B

1234567891011121314
  1. using System.Runtime.Serialization;
  2. namespace Diligent.WebAPI.Host.Exceptions
  3. {
  4. public class NotFoundException : BaseException
  5. {
  6. public NotFoundException() { }
  7. public NotFoundException(string? message) : base(message) { }
  8. public NotFoundException(string message, Exception innerException) : base(message, innerException) { }
  9. public NotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { }
  10. }
  11. }