Unhandled exception type InterruptedException : Java Threads


If you get "Unhandled exception type InterruptedException" in your java programing that contains threads then you must surround the code with a try/catch block that handles InterruptedException.

InterruptedException is a checked exception, which is used to indicate the current thread that it has been interrupted by an some other thread while it was doing some operation.

Example: InterruptedExceptionEx.java
package com.code2care.threadsexamples;

public class InterruptedExceptionEx implements Runnable {


	@Override
	public void run() {
	
	
		for(int i = 0;i<=10;i++) {
			
			System.out.println("Runnable Tread : "+ i);
			try {
				Thread.sleep(200);
			} catch (InterruptedException e) {

				e.printStackTrace();
			}
		}
	}

}


















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap