Java अपवादएरर
IOExceptionIOException
कोई I/O operation विफल हो जाता है या बाधित हो जाता है।
jvmandroidspring
विवरण देखें IllegalStateExceptionकिसी अनुचित समय पर method कॉल किया जाता है या object invalid state में है।
object requested operation के लिए सही state में नहीं है। उदाहरण के लिए, पहले hasNext() कॉल किए बिना Iterator पर next() कॉल करना, या पहले से running thread को start करना।
method कॉल करने से पहले object की state जांचें। expected method call sequence follow करें। object lifecycle track करने के लिए state machines या flags उपयोग करें।
IOExceptionकोई I/O operation विफल हो जाता है या बाधित हो जाता है।
NoClassDefFoundErrorएक class compile time पर मिली थी लेकिन runtime पर load नहीं की जा सकती।
ReflectiveOperationExceptionReflection operation ने exception throw किया।
SQLExceptionSQL ऑपरेशन के दौरान डेटाबेस access त्रुटि होती है।
StackOverflowErrorcall stack अपनी maximum size से अधिक हो गया है, आमतौर पर गहरे या अनंत recursion के कारण।
InterruptedExceptionएक thread wait, sleep, या blocked होने के दौरान interrupt किया गया।