refactor: Rename EmailPorifler to MessagingService
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user