Java   View all facts   Glossary   Help
object > exception > unchecked exception > error
Upunchecked exception

error comparison table
Subject is a kind of has definition
unchecked exceptionexceptionAn exception that is not checked , which is of the class RuntimeException and its subclasses, or of the class Error and its subclasses
errorunchecked exceptionAn exception that is exempted from compile-time checking because it can occur at many points in the program and recovery from them is difficult or impossible . A Java program declaring such exceptions would be cluttered, pointlessly.

Upunchecked exception