12 lines
259 B
C#
12 lines
259 B
C#
namespace ExpenseTracker.Application.Common.Exceptions;
|
|
|
|
public class CurrencyConverterException : Exception
|
|
{
|
|
public CurrencyConverterException()
|
|
: base() { }
|
|
|
|
public CurrencyConverterException(string message)
|
|
: base(message) { }
|
|
}
|
|
|