Advertisement
egyware

Untitled

Nov 23rd, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. public class Program
  2. {
  3.  
  4. public static void main(String args[])
  5. {
  6.     funcionB();
  7. }
  8.  
  9. public static void funcionA() throws Exception
  10. {
  11.     throw new Exception("Exception LOL");
  12. }
  13.  
  14. public static void funcionB()
  15. {
  16.     funcionA();
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement