Completed
Push — master ( b92a49...e8f5e1 )
by Rasmus
12:47 queued 09:15
created

SMTPException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 7
ccs 0
cts 4
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Kodus\Mail\SMTP;
4
5
use Exception;
6
7
/**
8
 * General exception thrown by the SMTP Client for various error-conditions.
9
 */
10
class SMTPException extends Exception
11
{
12
    public function __construct($message)
13
    {
14
        parent::__construct($message);
15
    }
16
}
17