Skip to content

Instantly share code, notes, and snippets.

@ProZhar
Created December 4, 2015 08:49
Show Gist options
  • Select an option

  • Save ProZhar/8cf62f5117b5214791f7 to your computer and use it in GitHub Desktop.

Select an option

Save ProZhar/8cf62f5117b5214791f7 to your computer and use it in GitHub Desktop.
com.javarush.test.level09.lesson06.task01
package com.javarush.test.level09.lesson06.task01;
/* Исключение при работе с числами
Перехватить исключение (и вывести его на экран), указав его тип, возникающее при выполнении кода:
int a = 42 / 0;
*/
public class Solution
{
public static void main(String[] args) throws Exception
{
try
{
int a = 42/0;
}
catch (Exception e)
{
System.out.println(e);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment