16 lines
444 B
C#
16 lines
444 B
C#
using DigitalData.MessagingService.Domain.Enums;
|
|
|
|
namespace DigitalData.MessagingService.Domain.Exceptions;
|
|
|
|
public class AttachmentProcessingException : DomainException
|
|
{
|
|
public AttachmentProcessingException(ErrorCode errorCode, string message) : base(message, errorCode)
|
|
{
|
|
}
|
|
|
|
public AttachmentProcessingException(ErrorCode errorCode, string message, Exception innerException)
|
|
: base(message, errorCode)
|
|
{
|
|
}
|
|
}
|