web/lib/Exceptions/PaymentExistsException.php
2024-05-10 23:38:57 -05:00

7 lines
169 B
PHP

<?
namespace Exceptions;
class PaymentExistsException extends AppException{
/** @var string $message */
protected $message = 'This transaction ID already exists.';
}