🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
380 B
C#
19 lines
380 B
C#
namespace ColaFlow.Domain.Exceptions;
|
|
|
|
/// <summary>
|
|
/// Exception type for domain layer
|
|
/// </summary>
|
|
public class DomainException : Exception
|
|
{
|
|
public DomainException()
|
|
{ }
|
|
|
|
public DomainException(string message)
|
|
: base(message)
|
|
{ }
|
|
|
|
public DomainException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{ }
|
|
}
|