Checked exceptions are exceptions that must be either caught or declared in a throws clause. They are all subclasses of Throwable EXCEPT RuntimeException and its subclasses (unchecked exceptions) and Error and its subclasses (system errors). So checked exceptions are 'not the subclasses of RuntimeException' (and also not Error subclasses).