jimmerioles/bitcoin-currency-converter-php

View on GitHub
src/Exception/UnexpectedValueException.php

Summary

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

declare(strict_types=1);

namespace Jimmerioles\BitcoinCurrencyConverter\Exception;

use Jimmerioles\BitcoinCurrencyConverter\Contracts\ExceptionInterface;
use UnexpectedValueException as GlobalUnexpectedValueException;

class UnexpectedValueException extends GlobalUnexpectedValueException implements ExceptionInterface
{
}