12 lines
156 B
PHP
12 lines
156 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Contractless\Api\Rpc;
|
||
|
|
|
||
|
|
use RuntimeException;
|
||
|
|
|
||
|
|
final class UpstreamRejectedException extends RuntimeException
|
||
|
|
{
|
||
|
|
}
|