6 lines
174 B
C#
6 lines
174 B
C#
namespace Prefab.Domain.Exceptions;
|
||
|
||
/// <summary>
|
||
/// Root of all domain‐rule violations.
|
||
/// </summary>
|
||
public class DomainException(string message) : Exception(message); |