source: pro-violet-viettel/sourcecode/application/libraries/Doctrine/ORM/Query/AST/ASTException.php @ 345

Last change on this file since 345 was 345, checked in by quyenla, 11 years ago

collaborator page

File size: 287 bytes
Line 
1<?php
2
3namespace Doctrine\ORM\Query\AST;
4
5use Doctrine\ORM\Query\QueryException;
6
7class 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}
Note: See TracBrowser for help on using the repository browser.