Files
prefab-page-detail/Prefab/Domain/Exceptions/DomainException.cs
2025-10-27 17:39:18 -04:00

6 lines
174 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Prefab.Domain.Exceptions;
/// <summary>
/// Root of all domainrule violations.
/// </summary>
public class DomainException(string message) : Exception(message);