- Add SwissQrBillDto, AddressDto, AlternativeSchemeDto for Codecrete Bill mapping - Add BadRequestException to Domain exceptions - DTOs include [Obsolete] warnings for deprecated fields (AddressLine1/2)
24 lines
501 B
C#
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)
|
|
{
|
|
}
|
|
}
|