| 1 | <?php |
||
| 7 | class InvalidRelationPathException extends Exeption |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Create a new InvalidRelationPathException instance. |
||
| 11 | * |
||
| 12 | * @param string $path The relation path attempted |
||
| 13 | * @param int|null $code User defined exception code |
||
| 14 | * @param Exception|null $previous Previous exception if nested |
||
| 15 | */ |
||
| 16 | public function __construct($path, $code = 0, Exception $previous = null) |
||
| 22 | } |
||
| 23 |