Guest User

Untitled

a guest
Dec 11th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. java.lang.RuntimeException:
  2. ...
  3. Caused by: com.mypackage.SpecificException
  4.  
  5. try {
  6. ts.init();
  7. } catch (RuntimeException e) {
  8. if (e.getCause() instanceof SpecificException) {
  9. //do something
  10. } else {
  11. throw e;
  12. }
  13. }
Add Comment
Please, Sign In to add comment