Fix message
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 34s
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 34s
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user