using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
try
{
Method();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
static void Method()
{
try
{
int value = 1 / int.Parse("0");
}
catch
{
throw;
}
}
}
}
/*
run:
Attempted to divide by zero.
*/