1 | <?php |
||
24 | class TransitionNotFound extends FlowException |
||
25 | { |
||
26 | /** |
||
27 | * Construct. |
||
28 | * |
||
29 | * @param string $transitionName The not found transition name. |
||
30 | * @param string $workflowName Current workflow name. |
||
31 | * @param int $code Error code. |
||
32 | * @param Exception $previous Previous thrown exception. |
||
33 | * |
||
34 | * @return TransitionNotFound |
||
35 | */ |
||
36 | public static function withName( |
||
48 | } |
||
49 |