ArrayIndexOutOfBoundsExceptionArrayIndexOutOfBoundsException
array को ऐसे index से access किया जाता है जो negative है या array length से अधिक या बराबर है।
FileAlreadyExistsExceptionfile creation या move operation विफल होती है क्योंकि target file पहले से मौजूद है।
Files.createFile(), Files.createDirectory(), या Files.move() ने पाया कि target path पहले से मौजूद है। operation डिफ़ॉल्ट रूप से overwrite नहीं करता।
बनाने से पहले जाँचें कि file मौजूद है या नहीं। move/copy operations के लिए StandardCopyOption.REPLACE_EXISTING उपयोग करें। यदि overwriting का इरादा हो तो पहले मौजूदा file हटाएं।
ArrayIndexOutOfBoundsExceptionarray को ऐसे index से access किया जाता है जो negative है या array length से अधिक या बराबर है।
ClassNotFoundExceptionruntime पर classpath में class नहीं मिल सकती।
UnsupportedOperationExceptionimplementation द्वारा कोई operation support नहीं किया जाता।
NoSuchFieldErrorRuntime पर एक field को reference किया गया लेकिन वह class में मौजूद नहीं है।
NoClassDefFoundErrorएक class compile time पर मिली थी लेकिन runtime पर load नहीं की जा सकती।
RejectedExecutionExceptionexecutor द्वारा टास्क को निष्पादन के लिए स्वीकार नहीं किया जा सकता।