IndexOutOfBoundsExceptionIndexOutOfBoundsException
A collection is accessed with an index that is outside its valid range.
InstantiationExceptionAn attempt to create an instance of an abstract class or interface using reflection.
Class.newInstance() or Constructor.newInstance() is called on an abstract class, interface, array class, or a class without a no-arg constructor.
Use a concrete implementation class instead of the abstract class. Ensure the class has a public no-arg constructor. Use a factory method to create instances.
IndexOutOfBoundsExceptionA collection is accessed with an index that is outside its valid range.
IOExceptionAn I/O operation fails or is interrupted.
ArithmeticExceptionAn arithmetic operation produces an undefined result, such as division by zero.
UnsupportedEncodingExceptionA character encoding is not supported by the JVM.
OutOfMemoryErrorThe JVM has exhausted its available heap memory.
ExecutionExceptionAn exception occurred during the execution of a task submitted to an executor.