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

__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 2
crap 1
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