prueba tecnica

This commit is contained in:
Alejandro
2025-06-15 18:29:25 +02:00
parent 9758ee0bc6
commit d97e55a83f
127 changed files with 6488 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
namespace ProximaContracts.Shared.Exceptions.Repositories.Rates
{
public sealed class CheckIfRateIdExistsException : Exception
{
public CheckIfRateIdExistsException(string message) : base(message) { }
}
}

View File

@@ -0,0 +1,7 @@
namespace ProximaContracts.Shared.Exceptions.Repositories.Rates
{
public sealed class GetAllRates404Exception : Exception
{
public GetAllRates404Exception(string message) : base(message) { }
}
}

View File

@@ -0,0 +1,7 @@
namespace ProximaContracts.Shared.Exceptions.Repositories.Rates
{
public sealed class GetAllRatesException : Exception
{
public GetAllRatesException(string message) : base(message) { }
}
}