Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 145 Bytes

File metadata and controls

16 lines (14 loc) · 145 Bytes

Exception Handling

try
{
   //code
}
catch (Exception ex)
{
   //code
}
throw new Exception("you did something stupid");