AccessControlExceptionAccessControlException
A security check fails for a specific permission.
InterruptedExceptionA thread is interrupted while it is waiting, sleeping, or blocked.
Another thread called interrupt() on the current thread while it was in a blocking operation like Thread.sleep(), Object.wait(), or BlockingQueue.take().
Handle the interruption gracefully by cleaning up and exiting. Restore the interrupt flag with Thread.currentThread().interrupt(). Do not silently swallow the exception.
AccessControlExceptionA security check fails for a specific permission.
ClassNotFoundExceptionA class cannot be found on the classpath at runtime.
ExecutionExceptionAn exception occurred during the execution of a task submitted to an executor.
InvalidClassExceptionA serialized class has an incompatible version or invalid format.
NoClassDefFoundErrorA class was found at compile time but cannot be loaded at runtime.
NoSuchMethodErrorA method is called at runtime but does not exist in the class.