Advertisement
sergAccount

Untitled

Jul 17th, 2021
813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.89 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.mycompany.ex21;
  7.  
  8. public class Main4 {  
  9.     // метод который выбрасывает исключение
  10.     // используем ключевое слово throws
  11.     public static void test() throws Exception{
  12.         System.out.println("test!!!");
  13.         throw new Exception("что то не так!");
  14.     }
  15.    
  16.     public static void main(String[] args) {
  17.         try {
  18.             //
  19.             test();
  20.         } catch (Exception ex) {
  21.             ex.printStackTrace();
  22.             System.out.println("ex.message=" + ex.getMessage());
  23.         } finally{
  24.             System.out.println("in block!!");
  25.         }
  26.         System.out.println("OK");
  27.     }    
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement