denpamusic/php-bitcoinrpc

View on GitHub
src/Exceptions/BadConfigurationException.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace Denpa\Bitcoin\Exceptions;

class BadConfigurationException extends ClientException
{
    /**
     * Configuration container.
     *
     * @var array
     */
    protected $config;

    /**
     * Constructs new bad configuration exception.
     *
     * @param array $config
     * @param mixed $args,...
     *
     * @return void
     */
    public function __construct(array $config, ...$args)
    {
        $this->config = $config;

        parent::__construct(...$args);
    }

    /**
     * Gets config data.
     *
     * @return array
     */
    public function getConfig(): array
    {
        return $this->config;
    }

    /**
     * Returns array of parameters.
     *
     * @return array
     */
    protected function getConstructorParameters(): array
    {
        return [
            $this->getConfig(),
            $this->getMessage(),
            $this->getCode(),
        ];
    }
}