Format ./web/backend/Domain/Domain.Exceptions

This commit is contained in:
Aaron Po
2026-06-20 15:13:58 -04:00
parent d4734ae9e7
commit b54f70ccbe
2 changed files with 1 additions and 3 deletions

View File

@@ -1,9 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net10.0</TargetFramework> <TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@@ -30,4 +30,4 @@ public class ForbiddenException(string message) : Exception(message);
/// Exception thrown when business rule validation fails (distinct from FluentValidation). /// Exception thrown when business rule validation fails (distinct from FluentValidation).
/// Maps to HTTP 400 Bad Request. /// Maps to HTTP 400 Bad Request.
/// </summary> /// </summary>
public class ValidationException(string message) : Exception(message); public class ValidationException(string message) : Exception(message);