Files
DocumentService/DocumentOperator.Domain/Common/Exceptions/BadRequestException.cs
TekH 711f1a2660 feat: Add SwissQrBillDto and BadRequestException
- Add SwissQrBillDto, AddressDto, AlternativeSchemeDto for Codecrete Bill mapping
- Add BadRequestException to Domain exceptions
- DTOs include [Obsolete] warnings for deprecated fields (AddressLine1/2)
2026-07-16 15:46:44 +02:00

24 lines
501 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace DocumentOperator.Domain.Common.Exceptions;
public class BadRequestException : Exception
{
public BadRequestException()
{
}
public BadRequestException(string? message) : base(message)
{
}
public BadRequestException(string? message, Exception? innerException) : base(message, innerException)
{
}
}