13 lines
299 B
C#
13 lines
299 B
C#
using System;
|
|
|
|
namespace Domain.Exceptions
|
|
{
|
|
public class DomainException : Exception
|
|
{
|
|
public DomainException(string message) : base(message)
|
|
{ }
|
|
|
|
public DomainException(string message, Exception innerException) : base(message, innerException)
|
|
{ }
|
|
}
|
|
} |