Preview:
public class Main {
    public static void main(String[ ] args) {

        try {

            int firstNumber = 5;
            int secondNumber = 0;
            int quotient = firstNumber / secondNumber;

            System.out.println(quotient); // error!
        }

        catch (Exception e){
            System.out.println("We can't divide a number by 0!");
        }

        finally {
            System.out.println("Our 'try catch' example is finished.");
        }
    }
}
/* Output:
We can't divide a number by 0!
Our 'try catch' example is finished.
*/
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter