feat(infra): implement plaid service
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user