9 lines
278 B
C#
9 lines
278 B
C#
|
|
namespace AutoAgent.Domain.Exceptions
|
|||
|
|
{
|
|||
|
|
public class DomainException : Exception
|
|||
|
|
{
|
|||
|
|
public DomainException(string message) : base(message) { }
|
|||
|
|
public DomainException(string message, Exception innerException) : base(message, innerException) { }
|
|||
|
|
}
|
|||
|
|
}
|