-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#v2.2 - Payout and Billing improved (#53)
* - Payout model restructured * - Bill update implementation * - unit tests updated
- Loading branch information
Antonio Buedo
authored
Jul 15, 2019
1 parent
eaaa4ba
commit d8dc451
Showing
11 changed files
with
334 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
|
||
namespace BitPayAPI.Exceptions | ||
{ | ||
public class BillUpdateException : BitPayException | ||
{ | ||
private const string BitPayCode = "BITPAY-BILL-UPDATE"; | ||
private const string BitPayMessage = "Failed to update bill"; | ||
|
||
public BillUpdateException() : base(BitPayCode, BitPayMessage) | ||
{ | ||
} | ||
|
||
public BillUpdateException(Exception ex) : base(BitPayCode, BitPayMessage, ex) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.