What will happen when you run this code?
<?php
class CustomException { }
throw new CustomException('Error!');
                         
						
                                                    
                        
                        
                            A fatal error will occur because the exception is not being caught
                            
                            Correct:
                                A fatal error will occur because the exception is not being caught