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!");
        }
    }
}
// Output: We can't divide a number by 0!
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