Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Created by Anatoliy on 31.08.2016.
- * Task 4.2
- */
- public class Pr5 {
- public static void main(String[] args) {
- }
- public void Cat() throws MyException {
- throw new MyException();
- }
- public class MyException extends Exception {
- MyException() {
- System.out.println("Error");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement