Files
Caterina Simona Pastore 79549bea05 Sprint 5 (#28)
2025-05-28 00:10:38 +02:00

12 lines
254 B
C#

using System;
namespace BasicDotnetTemplate.MainProject.Models.Api.Common.Exceptions;
public class CreateException : Exception
{
public CreateException(string message, Exception innerException)
: base(message, innerException)
{
}
}