Completed
Push — soap-12 ( 6e3908...80b930 )
by Asmir
26:02
created

UnexpectedFormatException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace GoetasWebservices\SoapServices\SoapClient\Exception;
4
5
use Psr\Http\Message\RequestInterface;
6
use Psr\Http\Message\ResponseInterface;
7
8
class UnexpectedFormatException extends ServerException
9
{
10
    public function __construct(ResponseInterface $response, RequestInterface $request, $message)
11
    {
12
        parent::__construct($response, $request);
13
        $this->message = $message;
14
    }
15
}
16