Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

EntityNotFoundException.cs 529B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Diligent.WebAPI.Contracts.Exceptions
  7. {
  8. public class EntityNotFoundException : Exception
  9. {
  10. public EntityNotFoundException()
  11. {
  12. }
  13. public EntityNotFoundException(string message)
  14. : base(message)
  15. {
  16. }
  17. public EntityNotFoundException(string message, Exception inner)
  18. : base(message, inner)
  19. {
  20. }
  21. }
  22. }