classlib/ExpenseTracker.Application/Common/Exceptions/CurrencyConverterException.cs
2024-08-07 21:12:02 +03:00

12 lines
259 B
C#

namespace ExpenseTracker.Application.Common.Exceptions;
public class CurrencyConverterException : Exception
{
public CurrencyConverterException()
: base() { }
public CurrencyConverterException(string message)
: base(message) { }
}