14 lines
296 B
C#
14 lines
296 B
C#
namespace UniVerse.Domain.Exceptions;
|
|
|
|
public class NotFoundException : Exception
|
|
{
|
|
public NotFoundException(string entityName, object key)
|
|
: base($"{entityName} with key '{key}' was not found.")
|
|
{
|
|
}
|
|
|
|
public NotFoundException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|