jimmerioles/bitcoin-currency-converter-php

View on GitHub
src/Exception/InvalidArgumentException.php

Summary

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

declare(strict_types=1);

namespace Jimmerioles\BitcoinCurrencyConverter\Exception;

use InvalidArgumentException as GlobalInvalidArgumentException;
use Jimmerioles\BitcoinCurrencyConverter\Contracts\ExceptionInterface;

class InvalidArgumentException extends GlobalInvalidArgumentException implements ExceptionInterface
{
}