gdbots/ncr-php

View on GitHub
src/Exception/RepositoryIndexNotFound.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare(strict_types=1);

namespace Gdbots\Ncr\Exception;

use Gdbots\Schemas\Pbjx\Enum\Code;

final class RepositoryIndexNotFound extends RepositoryOperationFailed
{
    public function __construct(string $message, ?\Throwable $previous = null)
    {
        parent::__construct($message, Code::UNIMPLEMENTED->value, $previous);
    }
}