Guest User

Untitled

a guest
Oct 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import java.io.FileNotFoundException;
  2. import java.io.IOException;
  3.  
  4. class Computer {
  5.  
  6. public void turnON() throws IOException {
  7. System.out.println("Turned on computer");
  8. }
  9.  
  10. }
  11.  
  12. class MacBook extends Computer {
  13.  
  14. public void turnON() throws RuntimeException, FileNotFoundException {
  15. System.out.println("Turned on macBook");
  16. }
  17. }
Add Comment
Please, Sign In to add comment