RiktaD/php-query

View on GitHub
src/Exception/QueryRuntimeException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Rikta\PhpQuery\Exception;

/**
 * Implemented by all exceptions of this package to allow `try{...}catch(QueryRuntimeException)`-expressions.
 */
interface QueryRuntimeException
{
}