Files
fiscalos/src/FiscalOS.Infra/Accounts/Plaid/PlaidException.cs
T

16 lines
291 B
C#
Raw Normal View History

2026-02-12 20:48:49 -06:00
namespace FiscalOS.Infra.Accounts.Plaid;
public class PlaidException : Exception
{
public PlaidException()
{
}
public PlaidException(string message) : base(message)
{
}
public PlaidException(string message, Exception innerException) : base(message, innerException)
{
}
}