Completed
Push — master ( 83cd0b...5cd9dd )
by Gaël
26:21 queued 11:17
created

Exception   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
dl 0
loc 17
rs 10
c 1
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A requestError() 0 3 1
A serviceUnavailable() 0 3 1
1
<?php
2
3
namespace DansMaCulotte\Colissimo\Exceptions;
4
5
class Exception extends \Exception
6
{
7
    /**
8
     * @return Exception
9
     */
10
    public static function serviceUnavailable()
11
    {
12
        return new self("Colissimo Web Service is unavailable");
13
    }
14
    
15
    /**
16
     * @param string $message
17
     * @return Exception
18
     */
19
    public static function requestError(string $message)
20
    {
21
        return new self("Request returned error: ${message}");
22
    }
23
}
24