| 1 | <?php |
||
| 7 | class QueryBuilderException extends \Exception |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Exception if the ORDER BY direction does not exist |
||
| 11 | * |
||
| 12 | * @param string $direction |
||
| 13 | * @return self |
||
| 14 | */ |
||
| 15 | public static function orderByDirectionDoesNotExist($direction) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Exception if the ORDER BY direction does not exist |
||
| 22 | * |
||
| 23 | * @param string $expr_type |
||
| 24 | * @return self |
||
| 25 | */ |
||
| 26 | public static function expressionTypeDoesNotExist($expr_type) |
||
| 30 | } |
||
| 31 |