7 lines
225 B
C#
7 lines
225 B
C#
using ApplicationLayer.GeneralExceptions;
|
|
|
|
namespace ApplicationLayer.Services.GeneralExceptions;
|
|
|
|
/// Exception to throw when entity not found
|
|
public class EntityNotFoundException(string message) : ApiException(message);
|