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

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