According to Sams Teach Yourself Java in 21 Days
"Unchecked exceptions, also called runtime exceptions ..."
Under this fact, an error is also an exception at runtime, as they are unchecked exceptions (or is this not what it says?)
This confuses me with the statement below.
Runtime exceptions are internal errors at runtime in the Java environment.
If he speaks of java RuntimeExceptions, then it is a lie because they are Exceptions, which are described as "An exception describes errors caused by your program and external circumstances. These errors can be caught and processed by your program."
But, on the other hand, if this refers to java errors, then these are internal errors.
So is this statement true or false?
source
share