mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
13 lines
415 B
C#
13 lines
415 B
C#
using ShoppingAssistantApi.Domain.Common;
|
|
|
|
namespace ShoppingAssistantApi.Application.Exceptions;
|
|
|
|
public class EntityNotFoundException<TEntity> : Exception where TEntity : EntityBase
|
|
{
|
|
public EntityNotFoundException()
|
|
: base($"\"{typeof(TEntity).Name}\" was not found.") { }
|
|
|
|
public EntityNotFoundException(string message, Exception innerException)
|
|
: base(message, innerException) { }
|
|
}
|