Java अपवादएरर
ConcurrentModificationExceptionConcurrentModificationException
iteration के दौरान collection को modify किया जाता है।
jvmandroidspring
विवरण देखें NoClassDefFoundErrorएक class compile time पर मिली थी लेकिन runtime पर load नहीं की जा सकती।
Compilation के दौरान class मौजूद थी लेकिन runtime classpath से गायब है। ऐसा तब हो सकता है जब कोई dependency compile time पर दी गई हो लेकिन runtime के लिए package न की गई हो, या जब static initializer विफल हो जाए।
सुनिश्चित करें कि सभी compile-time dependencies runtime classpath में शामिल हों। compile और runtime के बीच version mismatches जाँचें। गायब class में static initializer failures की जाँच करें।
ConcurrentModificationExceptioniteration के दौरान collection को modify किया जाता है।
InvocationTargetExceptionreflection के माध्यम से invoke की गई method exception फेंकती है।
IOExceptionकोई I/O operation विफल हो जाता है या बाधित हो जाता है।
StackOverflowErrorcall stack अपनी maximum size से अधिक हो गया है, आमतौर पर गहरे या अनंत recursion के कारण।
SecurityExceptionSecurity manager द्वारा एक operation अस्वीकार किया गया।
IllegalArgumentExceptionकिसी method को ऐसा argument मिलता है जो उसकी expected range या format के लिए valid नहीं है।