public class FileHandler { public void write() { try { this.tryWrite(); } catch (InterruptedException e) { System.err.println("Hiba az altatás során!"); } } public void tryWrite() throws InterruptedException { Thread.sleep(2000); System.out.println("Fájlkezelés árnyékeljárás..."); } }