1 | <?php |
||
9 | class TransitionPatternMismatch extends Exception |
||
10 | { |
||
11 | /** |
||
12 | * Prepares exception message that includes the mismatched pattern and transition string |
||
13 | * |
||
14 | * @param string $transition |
||
15 | * @param string $pattern |
||
16 | */ |
||
17 | 1 | public function __construct(string $transition, string $pattern) |
|
27 | } |
||
28 |