Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

NotFoundException.cs 257B

12345678910
  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. }
  9. }