Files
Examples/GerstITS.Examples.Api/Module.ExceptionHandling.cs
2026-01-03 11:16:24 +01:00

16 lines
396 B
C#

using GerstITS.Examples.Api.ExceptionHandling;
using GerstITS.Web.Api.ExceptionHandling.Extensions;
namespace GerstITS.Examples.Api;
public sealed partial class Module
{
#region Methods
private static void RegisterExceptionHandling(IServiceCollection container)
{
container.RegisterExceptionTransformationsOf<ValidationExceptionTransformation>();
}
#endregion
}