Files
blazor-cms/ConfigBackEnd/Exceptions/AlreadyExistsExceptions.cs
T
2026-07-21 13:52:43 +07:00

24 lines
516 B
C#

namespace Indotalent.ConfigBackEnd.Exceptions;
public class AlreadyExistsException : Exception
{
public AlreadyExistsException()
: base()
{
}
public AlreadyExistsException(string message)
: base(message)
{
}
public AlreadyExistsException(string message, Exception innerException)
: base(message, innerException)
{
}
public AlreadyExistsException(string name, object key)
: base($"Entity \"{name}\" ({key}) already exists.")
{
}
}