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

Exception::requestError()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 1
b 0
f 0
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