fork download
  1.  
  2. class Ideone {
  3. public static void main (String[] args) throws Exception {
  4. System.out.println(funny());
  5. }
  6.  
  7. public static int funny() throws Exception {
  8. try {
  9. throw new Exception("Oh noes :(");
  10. } finally {
  11. return 10;
  12. }
  13. }
  14. }
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
10