| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Diligent.WebAPI.Contracts.Exceptions
- {
- public class EntityNotFoundException : Exception
- {
- public EntityNotFoundException()
- {
- }
-
- public EntityNotFoundException(string message)
- : base(message)
- {
- }
-
- public EntityNotFoundException(string message, Exception inner)
- : base(message, inner)
- {
- }
- }
- }
|