Completed
Push — master ( 262e68...84540b )
by Jeroen De
10s
created

PayPalPaymentNotificationVerifierException

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 9
c 0
b 0
f 0
1
<?php
2
3
declare( strict_types = 1 );
4
5
namespace WMDE\Fundraising\Frontend\Infrastructure;
6
7
/**
8
 * @license GNU GPL v2+
9
 * @author Kai Nissen < [email protected] >
10
 */
11
class PayPalPaymentNotificationVerifierException extends \RuntimeException {
12
13
	const ERROR_UNKNOWN = 0;
14
	const ERROR_UNSUPPORTED_STATUS = 1;
15
	const ERROR_WRONG_RECEIVER = 2;
16
	const ERROR_VERIFICATION_FAILED = 3;
17
	const ERROR_UNSUPPORTED_CURRENCY = 4;
18
19
}
20