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

MembershipApplicationRepositoryException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
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