• Source
    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. }