Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 12345678910 |
- using System.Runtime.Serialization;
-
- namespace Diligent.WebAPI.Host.Exceptions
- {
- public class NotFoundException : BaseException
- {
- public NotFoundException() { }
- public NotFoundException(string? message) : base(message) { }
- }
- }
|