You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an exception is thrown within a `try_catch` step, it's compared against the list of `allowed_exceptions`.
181
+
If the exception matches, it's caught and the migration step continues or stops depending on the `stop_after_first_exception` configuration setting.
182
+
The migration step is marked as successful and the migration process continues.
183
+
Non-matching exceptions throw immediately, halting the migration process and returning an error.
184
+
125
185
### Expression syntax
126
186
127
187
You can use [Symfony expression syntax]([[= symfony_doc =]]/reference/formats/expression_language.html) in data migrations, like in [repeatable steps](#repeatable-steps), where you can use it to generate varied content in migration steps.
0 commit comments