AbstractMethodErrorAbstractMethodError
An abstract method is called that has no implementation.
AccessControlExceptionA security check fails for a specific permission.
The security manager denies an operation that requires a specific permission. This provides the specific permission that was denied, unlike SecurityException.
Grant the required permission in the security policy. Check which permission is needed from the exception message. Remove or configure the security manager appropriately.
AbstractMethodErrorAn abstract method is called that has no implementation.
DeadlockTwo or more threads are blocked forever, each waiting for the other to release a lock.
InvocationTargetExceptionA method invoked via reflection throws an exception.
OutOfMemoryErrorThe JVM has exhausted its available heap memory.
IllegalStateExceptionA method is called at an inappropriate time or the object is in an invalid state.
NoSuchMethodErrorA method is called at runtime but does not exist in the class.