| 12345678910111213 |
- namespace BlackRock.Reporting.API.Exceptions
- {
- public class DomainException : Exception
- {
- public DomainException(string? message) : base(message)
- {
- }
-
- public DomainException(string? message, Exception? innerException) : base(message, innerException)
- {
- }
- }
- }
|