What does 'PHP Fatal error: Uncaught Exception' usually indicate?

Question

Grade: Education Subject: Support
What does 'PHP Fatal error: Uncaught Exception' usually indicate?
Asked by:
65 Viewed 65 Answers

Answer (65)

Best Answer
(309)
A 'PHP Fatal error: Uncaught Exception' signifies a serious problem in your code that prevents the script from continuing. It usually happens when you try to perform an operation that is not allowed, such as accessing a non-existent file, attempting to use an undefined function, or encountering a type error.