fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. class Ideone {
  6. public static void main (String[] args) throws java.lang.Exception {
  7. try {
  8. throw new Exception();
  9. } catch (Exception ex) {
  10. ex.printStackTrace();
  11. }
  12.  
  13. System.out.println("I'm here :(");
  14. }
  15. }
Success #stdin #stdout #stderr 0.04s 4386816KB
stdin
Standard input is empty
stdout
I'm here :(
stderr
java.lang.Exception
	at Ideone.main(Main.java:8)