Completed
Push — v3.0 ( 928391...a7a97e )
by Masiukevich
03:12
created

SerializeEventFailed   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 10
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A fromThrowable() 0 3 1
1
<?php
2
3
/**
4
 * Event Sourcing implementation
5
 *
6
 * @author  Maksim Masiukevich <[email protected]>
7
 * @license MIT
8
 * @license https://opensource.org/licenses/MIT
9
 */
10
11
declare(strict_types = 1);
12
13
namespace ServiceBus\EventSourcing\EventStream\Serializer\Exceptions;
14
15
/**
16
 *
17
 */
18
final class SerializeEventFailed extends \RuntimeException
19
{
20
    /**
21
     * @param \Throwable $throwable
22
     *
23
     * @return self
24
     */
25 1
    public static function fromThrowable(\Throwable $throwable): self
26
    {
27 1
        return new self($throwable->getMessage(), (int) $throwable->getCode(), $throwable);
28
    }
29
}
30