- DomainException: Base exception for all domain errors - ValidationException: Business rule validation failures - AttachmentProcessingException: Attachment-specific processing errors Exceptions maintain error code compatibility with legacy system.
13 lines
286 B
C#
13 lines
286 B
C#
namespace DigitalData.EmailProfiler.Domain.Exceptions;
|
|
|
|
public class DomainException : Exception
|
|
{
|
|
public DomainException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public DomainException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|