bavix/laravel-wallet

View on GitHub
src/Exceptions/UnconfirmedInvalid.php

Summary

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

declare(strict_types=1);

namespace Bavix\Wallet\Exceptions;

use Bavix\Wallet\Internal\Exceptions\InvalidArgumentExceptionInterface;
use InvalidArgumentException;

final class UnconfirmedInvalid extends InvalidArgumentException implements InvalidArgumentExceptionInterface
{
}