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.ja9;
- public class Main {
- // метод который выбрасывает исключение типа Exception
- public static void test() throws Exception{
- //
- System.out.println("test");
- // выброс исключние - используем ключевое слово trow
- throw new Exception("error message!!!");
- }
- //
- public static void test1() {
- // выброс исключние - используем ключевое слово trow
- System.out.println("test1");
- }
- //
- public static void test2() throws MyAppException{
- // выброс исключние - используем ключевое слово trow
- System.out.println("test1");
- throw new MyAppException("error message22222!!!");
- }
- //
- public static void main(String[] args) {
- // обработка исключений (механизм обработка исключений)
- test1(); // ok
- try {
- test();
- } catch (Exception ex) {
- ex.printStackTrace();
- System.out.println("message=" + ex.getMessage());
- }
- //
- try {
- test2();
- } catch (Exception ex) {
- ex.printStackTrace();
- System.out.println("message=" + ex.getMessage());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement