for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare( strict_types = 1 );
namespace WMDE\Fundraising\Frontend\Infrastructure;
/**
* @license GNU GPL v2+
* @author Kai Nissen < [email protected] >
*/
class PayPalPaymentNotificationVerifierException extends \RuntimeException {
const ERROR_UNKNOWN = 0;
const ERROR_UNSUPPORTED_STATUS = 1;
const ERROR_WRONG_RECEIVER = 2;
const ERROR_VERIFICATION_FAILED = 3;
const ERROR_UNSUPPORTED_CURRENCY = 4;
}