for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Skrill\Exception;
use Exception;
/**
* Class InvalidRecurringPaymentIDException.
*/
final class InvalidRecurringPaymentIDException extends Exception implements SkrillException
{
* @return InvalidRecurringPaymentIDException
public static function emptyTransactionID(): self
return new self('Skrill recurring payment ID should not be blank.');
}