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

ResourceNotFoundException.cs 351B

12345678910111213
  1. namespace BlackRock.Reporting.API.Exceptions
  2. {
  3. public class ResourceNotFoundException : Exception
  4. {
  5. public ResourceNotFoundException(string? message) : base(message)
  6. {
  7. }
  8. public ResourceNotFoundException(string? message, Exception? innerException) : base(message, innerException)
  9. {
  10. }
  11. }
  12. }