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

class Ssh2Exception 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);
    }
}