1 | <?php |
||
17 | class SubjectIdRetrievingException extends SubjectManipulatorException implements WorkflowExceptionInterface |
||
18 | { |
||
19 | /** |
||
20 | * Creates exception instance in case of configuration is not found for subject |
||
21 | * |
||
22 | * @param string $subjectClass subject class |
||
23 | * |
||
24 | * @return static |
||
25 | */ |
||
26 | public static function expressionNotFound($subjectClass) |
||
30 | |||
31 | /** |
||
32 | * Creates exception instance in case of subject specified is not an object |
||
33 | * |
||
34 | * @param mixed $subject subject |
||
35 | * |
||
36 | * @return static |
||
37 | */ |
||
38 | public static function subjectIsNotAnObject($subject) |
||
42 | } |