10 lines
299 B
C#
10 lines
299 B
C#
namespace Services.Support.Exceptions;
|
|
|
|
public class EntityNotFoundException : Exception
|
|
{
|
|
public EntityNotFoundException(string message)
|
|
: base(message) { }
|
|
public EntityNotFoundException(string message, Exception innerException)
|
|
: base(message, innerException) { }
|
|
|
|
} |