blob: ae03c831d7c78bff68484f96989f653924285d87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
namespace Elastica\Exception;
/**
* QueryBuilder exception.
*
* @author Manuel Andreo Garcia <andreo.garcia@googlemail.com>
*/
class QueryBuilderException extends \RuntimeException implements ExceptionInterface
{
}
|