kodekeep/paddle-sdk

View on GitHub
src/Exceptions/RequestException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/*
 * This file is part of Paddle SDK.
 *
 * (c) KodeKeep <hello@kodekeep.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace KodeKeep\Paddle\Exceptions;

use Exception;

final class RequestException extends Exception
{
    public static function unexpectedStatusCode(int $status): self
    {
        return new static("Received unexpected response with status code {$status}.");
    }

    public static function fromResponse(array $response): self
    {
        return new static("[{$response['error']['code']}] {$response['error']['message']}");
    }
}