Completed
Pull Request — master (#90)
by Jeroen De
03:08
created

__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
3
declare( strict_types = 1 );
4
5
namespace WMDE\Fundraising\Store;
6
7
/**
8
 * @since 2.0
9
 *
10
 * @license GNU GPL v2+
11
 * @author Jeroen De Dauw < [email protected] >
12
 */
13
class MembershipApplicationRepositoryException extends \RuntimeException {
14
15
	public function __construct( $message, \Exception $previous = null ) {
16
		parent::__construct( $message, 0, $previous );
17
	}
18
19
}
20