package elte.java2_utikalauz5.exception; class AlmaException extends Exception {} class KorteException extends Exception {} class BarackException extends Exception {} /** Példa hibakezelő kód. @link.forrásfájl {@docRoot}/../data/exception/src Gyumolcsos.java @since Java Útikalauz programozóknak */ public class Gyumolcsos { int alma() throws AlmaException { return 0; } int korte() throws KorteException { return 0; } int barack() throws BarackException { return 0; } int gyumolcs() { try { alma(); korte(); barack(); return 0; } catch(AlmaException hiba1) { /* alma hibakezelése */ } catch(KorteException hiba2) { /* korte hibakezelése */ } catch(BarackException hiba3) { /* barack hibakezelése */ } return 1; } }