Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.mycompany.ex21;
- public class Main3 {
- public static void main(String[] args) {
- //
- Object o = null;
- String s = null;
- // Exception java.lang.Exception
- Exception c = null;
- // Exception
- Exception e = new Exception("Exception message!!!!!!!!!");
- System.out.println("e.getMessage=" + e.getMessage());
- // MyAppException
- MyAppException e1 = new MyAppException("Что то пошло не так(");
- System.out.println("e1.getMessage=" + e1.getMessage());
- // throw - выброс исключения (объяект типа Exception)
- // try-catch - обработка
- //
- // trycatch+tab
- // обработка try-catch
- try {
- // выбросим исключение - объект типа Exception
- // выброс - throw
- System.out.println("0");
- System.out.println("HHHHHHHHHHH");
- throw new Exception("Exception message ОЙ!!!!!!!!!");
- } catch (Exception e2) {
- System.out.println("2");
- System.out.println("e2.message=" + e2.getMessage());
- // print stack trace (стек вызовов)
- e2.printStackTrace();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement