Fix message
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 34s

This commit is contained in:
Maxime Adler
2025-04-10 15:21:13 +02:00
parent 797484525b
commit b545da19b7
3 changed files with 6 additions and 13 deletions

View File

@@ -1,7 +1,3 @@
namespace GameIdeas.Shared.Exceptions;
public class NotFoundException : Exception
{
public NotFoundException(string msg, Exception? innerException = null) : base(msg, innerException)
{ }
}
public class NotFoundException(string msg, Exception? innerException = null) : Exception(msg, innerException);