|
0
|
1 |
<?php |
|
|
2 |
|
|
|
3 |
namespace Doctrine\ORM\Query\AST; |
|
|
4 |
|
|
|
5 |
use Doctrine\ORM\Query\QueryException; |
|
|
6 |
|
|
|
7 |
class ASTException extends QueryException |
|
|
8 |
{ |
|
|
9 |
public static function noDispatchForNode($node) |
|
|
10 |
{ |
|
|
11 |
return new self("Double-dispatch for node " . get_class($node) . " is not supported."); |
|
|
12 |
} |
|
|
13 |
} |