Errors that you’ll most likely encounter
Logging debug statements
Using the debugger
Most (if not all) programs will have errors — I’m talking about the nontrivial programs here, not the “Hello World” kind. Dealing with errors will be a big part of your occupation as a developer. In this chapter, we’ll talk about the kinds of errors you will most likely face and how to use IntelliJ to deal with some of these errors.
Types of Errors
Syntax errors
Runtime errors
Logic errors
Syntax Errors
Syntax errors are exactly what ...