mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
Add system to retrieve and manage donations in a local database
This commit is contained in:
parent
79c531aacb
commit
70a80d0e02
46 changed files with 782 additions and 910 deletions
6
lib/Exceptions/PaymentExistsException.php
Normal file
6
lib/Exceptions/PaymentExistsException.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?
|
||||
namespace Exceptions;
|
||||
|
||||
class PaymentExistsException extends SeException{
|
||||
protected $message = 'This transaction ID already exists.';
|
||||
}
|
6
lib/Exceptions/UserExistsException.php
Normal file
6
lib/Exceptions/UserExistsException.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?
|
||||
namespace Exceptions;
|
||||
|
||||
class UserExistsException extends SeException{
|
||||
protected $message = 'This email already exists in the database.';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue