Why do server errors occur on running a solution, even if the solution is building successfully?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Compile time versus run-time errors. See this stackoverflow thread for the difference between these two.
From wikipedia:
Thus, for example, a “run-time error” is detected only during the execution of the program, whereas a “compile-time error” is detected by the compiler before the program is started.
It’s impossible for the compiler to catch all errors beforehand: see the ‘halting problem’.