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

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