15 lines
291 B
C#
15 lines
291 B
C#
using System;
|
|
|
|
namespace _0_Framework.Exceptions;
|
|
|
|
public class NotFoundException:Exception
|
|
{
|
|
public NotFoundException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public NotFoundException(string name, object key) : base($"Entity \"{name}\" ({key}) was not found.")
|
|
{
|
|
}
|
|
|
|
} |