refactored exceptions

This commit is contained in:
2024-08-26 11:29:57 +03:00
parent d009181b91
commit a9b9ae839c
3 changed files with 0 additions and 16 deletions

View File

@@ -1,7 +0,0 @@
using ApplicationLayer.GeneralExceptions;
namespace ApplicationLayer.Services.GeneralExceptions
{
/// Exception to throw when can't complete some action on entity(delete or something) because it's needed for other entities
public class EntityUsedInDatabaseException(string message) : ApiException(message);
}