Исключения

This commit is contained in:
2025-02-05 20:43:06 +04:00
parent ffe137d574
commit 1ca954dfb8
5 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace CatHasPawsContratcs.Exceptions;
public class StorageException : Exception
{
public StorageException(Exception ex) : base($"Error while working in storage: {ex.Message}", ex) { }
}