Advertisement
Guest User

Untitled

a guest
May 21st, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. public class ExceptionsInMPK extends Exception {
  2.     ExceptionsInMPK() {
  3.         System.out.println("Brak tego rodzaju biletu");
  4.     }
  5. }
  6.  
  7.  
  8. I MAM DALEJ:
  9.  
  10. if(czyTakiIstnieje == false)
  11.         {
  12.             throw new ExceptionsInMPK();
  13.         }
  14. BLAD : Unhandlet exception type ExceptionsInMPK
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement