summaryrefslogtreecommitdiff
path: root/vendor/thecodingmachine/safe/generated/Exceptions/SocketsException.php
blob: 172f5d78f26c8ee9b0e8e59669d13ec3fce7c202 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
namespace Safe\Exceptions;

class SocketsException extends \ErrorException implements SafeExceptionInterface
{
    public static function createFromPhpError(): self
    {
        $error = error_get_last();
        return new self($error['message'] ?? 'An error occured', 0, $error['type'] ?? 1);
    }
}