ASTException.php 287B

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