You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
374 B
374 B
Error Handling
Error handling in Yii is different from plain PHP. First of all, all non-fatal errors are converted to exceptions so
you can use try
-catch
to work with these. Second, even fatal errors are rendered in a nice way. In debug mode that
means you have a trace and a piece of code where it happened so it takes less time to analyze and fix it.