InfoHeap
Tech
Navigation
  • Home
  • Tutorials
    • CSS tutorials & examples
    • CSS properties
    • Javascript cookbook
    • Linux/Unix Command Line
    • Mac
    • PHP
      • PHP functions online
      • PHP regex
    • WordPress
  • Online Tools
    • Text utilities
    • Online Lint Tools
search

Java tutorials & examples

    Java Basics

    • Hello World
    • print and println
    • System.out.format
    • static and instance variables

    Java classes and objects

    • this keyword

    Java Strings

    • Initialize string array
    • String prefix match
    • compare string
    • string to int

    Java Arrays

    • Array basics
    • 2d array example
    • array for-each loop
    • fill an array

    Java cookbooks

    • method equals vs operator ==
    • print exception as string
    • Arrays.sort custom Comparator
    • create inline Comparator
     
    • Home
    • > Tutorials
    • > Java

    Java – print exception as string examples

    on Jun 26, 2016

    Print exception stack trace

    public class Main {
      public static void main(String[] args) {
        try {
          float f = 1/0;
        } catch (Exception e) {
          e.printStackTrace(System.out);
        }
      }
    }
    java.lang.ArithmeticException: / by zero
    	at Main.main(Main.java:4)
    

    Print exception short description

    public class Main2 {
      public static void main(String[] args) {
        try {
          float f = 1/0;
        } catch (Exception e) {
          System.out.println(e);  // or System.out.println(e.toString()); 
        }
      }
    }
    java.lang.ArithmeticException: / by zero
    

    Suggested posts:

    1. Java System.out.print and println
    2. Mac – show volume icon on menu bar
    3. Remove passphrase from ssh private key
    4. Python for loop examples
    5. Java – equals vs ==
    6. Java – two dimensional array example
    7. Linux – ssh agent forwarding when using bastion host
    8. Java – string prefix match using startsWith
    Share this article: share on facebook share on linkedin tweet this submit to reddit
    Posted in Tutorials | Tagged Java
    • Browse content
    • Article Topics
    • Article archives
    • Contact Us
    Popular Topics: Android Development | AngularJS | Apache | AWS and EC2 | Bash shell scripting | Chrome developer tools | Company results | CSS | CSS cookbook | CSS properties | CSS Pseudo Classes | CSS selectors | CSS3 | CSS3 flexbox | Devops | Git | HTML | HTML5 | Java | Javascript | Javascript cookbook | Javascript DOM | jQuery | Kubernetes | Linux | Linux/Unix Command Line | Mac | Mac Command Line | Mysql | Networking | Node.js | Online Tools | PHP | PHP cookbook | PHP Regex | Python | Python array | Python cookbook | SEO | Site Performance | SSH | Ubuntu Linux | Web Development | Webmaster | Wordpress | Wordpress customization | Wordpress How To | Wordpress Mysql Queries | InfoHeap Money

    Copyright © 2025 InfoHeap.

    Powered by WordPress