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

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