Completed
Push — master ( ae4368...d96fc9 )
by Дмитрий
02:34
created

AuthFailed::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
c 1
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * SocialConnect project
4
 * @author: Patsura Dmitry https://github.com/ovr <[email protected]>
5
 */
6
7
namespace SocialConnect\Provider\Exception;
8
9
/**
10
 * This exception is a base exception when we cannot auth user on callback url
11
 */
12
abstract class AuthFailed extends \SocialConnect\Common\Exception
13
{
14 17
    public function __construct($message = 'Auth failed')
15
    {
16 17
        parent::__construct($message);
17 17
    }
18
}
19