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