Completed
Push — master ( 76469b...99b48b )
by Jan Philip
12:47
created

NetworkingException   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
dl 0
loc 7
c 1
b 0
f 0
wmc 1
lcom 0
cbo 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Created by IntelliJ IDEA.
4
 * User: uni
5
 * Date: 23.11.17
6
 * Time: 16:58
7
 */
8
9
namespace JPBernius\FMeat\Exeptions;
10
11
use Exception;
12
13
class NetworkingException extends Exception
14
{
15
    public function __construct()
16
    {
17
        parent::__construct("Networking Error occured.");
18
    }
19
}