@@ 203-206 (lines=4) @@ | ||
200 | throw new Exception\InvalidArgumentException($errMsg); |
|
201 | } |
|
202 | ||
203 | if (static::WORKFLOW_RUN_INITIALIZE === $workflowActivity && null === $this->getWorkflowName()) { |
|
204 | $errMsg = 'Not specified name workflow'; |
|
205 | throw new Exception\InvalidArgumentException($errMsg); |
|
206 | } |
|
207 | ||
208 | if (static::WORKFLOW_RUN_TYPE_DO_ACTION === $workflowActivity && null === $this->getEntryId()) { |
|
209 | $errMsg = 'Not specified entryId'; |
|
@@ 208-211 (lines=4) @@ | ||
205 | throw new Exception\InvalidArgumentException($errMsg); |
|
206 | } |
|
207 | ||
208 | if (static::WORKFLOW_RUN_TYPE_DO_ACTION === $workflowActivity && null === $this->getEntryId()) { |
|
209 | $errMsg = 'Not specified entryId'; |
|
210 | throw new Exception\InvalidArgumentException($errMsg); |
|
211 | } |
|
212 | } |
|
213 | } |
|
214 |