New scenario YouTubeexception etc

This commit is contained in:
2019-01-09 23:23:56 +01:00
parent f455ac39ff
commit 5f7139c481
5 changed files with 62 additions and 9 deletions

View File

@ -0,0 +1,13 @@
using System;
namespace Exceptionhandling
{
public class YouTubeException : Exception
{
public YouTubeException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}